Skip to content

JWT authentication strategy for feathers-authentication using Passport

License

Notifications You must be signed in to change notification settings

TimNZ/authentication-jwt

 
 

Repository files navigation

@feathersjs/authentication-jwt

Greenkeeper badge

Build Status Test Coverage Dependency Status Download Status

JWT authentication strategy for feathers-authentication using Passport

Installation

npm install @feathersjs/authentication-jwt --save

Quick example

const feathers = require('@feathersjs/feathers');
const authentication = require('feathers-authentication');
const jwt = require('@feathersjs/authentication-jwt');
const app = feathers();

// Setup authentication
app.configure(authentication(settings));
app.configure(jwt());

// Setup a hook to only allow valid JWTs to authenticate
// and get new JWT access tokens
app.service('authentication').hooks({
  before: {
    create: [
      authentication.hooks.authenticate(['jwt'])
    ]
  }
});

Documentation

Please refer to the @feathersjs/authentication-oauth1 documentation for more details.

License

Copyright (c) 2018

Licensed under the MIT license.

About

JWT authentication strategy for feathers-authentication using Passport

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%