npm.io
2.0.0 • Published 8 years ago

hapi-jwt-auth

Licence
MIT
Version
2.0.0
Deps
3
Vulns
4
Weekly
0
Stars
2

hapi-jwt-auth

Build Status

Installation

npm install hapi-jwt-auth --save

About plugin

JSON Web Token (JWT) authentication plugin for HapiJS

Inspired by hapi-auth-jsonwebtoken by boketto, modified to to expose additional node-jsonwebtoken methods for convienience.

Usage

This plugin will validate a signed token in the bearer header.

Setup

You will have to register the plugin with your server object, then create a new server auth strategy. Validation will occur only on routes that require authorization.

Options

The jwt scheme takes the following options:

  • key(required) - The private key the token was signed.
  • validate(optional) - Addiotional validation/user lookup, signature function(token, decoded, callback)
    • token - the verified signed token.
    • decoded - the decoded signed token.
    • callback - a callback function with signature function(err, isValid, credentials)
      • err - an internal error.
      • isValid(boolean) - whether the token was valid or not.
      • credentials - a credentials object passed back to the application in request.auth.credentials

Keywords