1.0.1 • Published 8 years ago

jwt-then v1.0.1

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

jwt-then

Build statusLicense

jwt as promised

$ npm install jwt-then

API

Tested for node 4+ with two implemented methods only, verify and sign.

Consult auth0/node-jsonwebtoken#README for detailed documentation.

jwt.sign(payload, key, options)

Sign a token with key, with options defaulting to { algorithm: 'HS256' }.

ES6:

jwt.sign({ username: 'fl0w' }, 'secret-dev-key').then(console.log)

ES7:

const token = await jwt.sign({ username: 'fl0w' }, 'secret-dev-key')
console.log(token)

jwt.verify(token, key, options)

Verify a token, with options defaulting to { algorithm: 'HS256' }.

ES6:

jwt.verify(token, 'secret-dev-key')
  .then(console.log)

ES7:

const token = await jwt.verify({ username: 'fl0w' }, 'secret-dev-key')
console.log(token)

Changelog

1.0.1 (2018-06-26)

  • Bump release

1.0.0 (2018-06-26)

  • Upgrade dependency jsonwebtoken min to 8.3
  • Upgrade devDependencies mocha and standard

0.6.0 (2016-11-22)

  • Removed dependency any-promise

0.5.1 (2016-07-06)

  • Passing opts to jsonwebtoken
  • Travis testing fixes

0.4.1

  • Added .editorconfig, because vim goes haywire without it
  • Added standard linter
  • Fixed some weirdness in README

0.4.0

  • Bumped dependency to jsonwebtoken@7 (major)
1.0.1

8 years ago

0.6.0

9 years ago

0.5.2

10 years ago

0.5.1

10 years ago

0.4.1

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.0.1

10 years ago

1.0.0

10 years ago