jwt-payload-decoder

1.2.4 • Public • Published

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
}

Package Sidebar

Install

npm i jwt-payload-decoder

Weekly Downloads

244

Version

1.2.4

License

MIT

Last publish

Collaborators

  • wdmtech