Local authentication strategy for feathers-authentication using Passport without all the boilerplate.
npm install @feathersjs/authentication-local --save
const feathers = require('@feathersjs/feathers');
const authentication = require('feathers-authentication');
const local = require('@feathersjs/authentication-local');
const app = feathers();
// Setup authentication
app.configure(authentication(settings));
app.configure(local());
// Setup a hook to only allow valid JWTs or successful
// local auth to authenticate and get new JWT access tokens
app.service('authentication').hooks({
before: {
create: [
authentication.hooks.authenticate(['local', 'jwt'])
]
}
});
Please refer to the @feathersjs/authentication-local API documentation for more details.
Copyright (c) 2018
Licensed under the MIT license.