Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.32 KB

File metadata and controls

40 lines (26 loc) · 1.32 KB

feathers-auth-basic

Build Status Code Climate Test Coverage Dependency Status Download Status

A way to handle basic authenticatioin on the feathers platform.

Installation

npm install feathers-auth-basic --save

Documentation

TBD

Complete Example

Here's an example of a Feathers server that uses feathers-auth-basic.

const feathers = require('@feathersjs/feathers');
const plugin = require('feathers-auth-basic');

// Initialize the application
const app = feathers();

// Initialize the plugin
app.configure(plugin());

License

Copyright (c) 2018

Licensed under the MIT license.