json web token npm code example
Example 1: json web token npm
$ npm install jsonwebtoken
Example 2: jsonwebtoken
var jwt = require('jsonwebtoken');var token = jwt.sign({ foo: 'bar' }, 'shhhhh');
Example 3: npm package for jwt
$ npm install jwt-simple
Example 4: jsonwebtoken
jwt.sign({ exp: Math.floor(Date.now() / 1000) + (60 * 60), data: 'foobar'}, 'secret');