1.2.4 • Published 8 years ago

jwt-payload-decoder v1.2.4

Weekly downloads
181
License
MIT
Repository
github
Last release
8 years ago

jwt-payload-decoder

A simple, exportable function for getting the payload from a JWT (JSON Web Token).

https://jwt.io/


Installation

$ npm install jwt-payload-decoder --save

Usage

Require the package in your application:

var jwtPayloadDecoder = require('jwt-payload-decoder')

Then get the payload like so:

var payload = jwtPayloadDecoder.getPayload(token)

var user = {
  email: payload.email,
  name: payload.name
}