A way to handle basic authenticatioin on the feathers platform.
npm install feathers-auth-basic --save
TBD
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());
Copyright (c) 2018
Licensed under the MIT license.