This package has been deprecated

Author message:

This package has been renamed to "@clarketm/jwt-cli"

@clarketm/jwt-utils

1.0.0 • Public • Published

jwt-utils

NPM release Build Status License

Command line utilities for working with JSON Web Tokens (JWT).



Installation

Yarn

yarn global add "@clarketm/jwt-utils"

Npm

npm install --global "@clarketm/jwt-utils"

Demo

usage demo

Usage

sign [options] payload secret

$ jwt sign '{"user": "Travis Clarke"}' "super secret"
copied to clipboard:

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhIjoxLCJpYXQiOjE1MjczMTI3NTIsImV4cCI6MTUyNzMxNjM1Mn0.2l4wyaoxNBBY7nvm6sAqAcmXSuuKjBubNo_h42hcigU

Note: the sign subcommand accepts all the same options as auth0/node-jsonwebtoken with the exception of mutatePayload which is not applicable.

verify [options] token secret

$ jwt verify "eyJhbGciOiJIUzI1..." "super secret"
valid!

Note: the verify subcommand accepts all the same options as auth0/node-jsonwebtoken

decode [options] token

$ jwt decode "eyJhbGciOiJIUzI1..."
copied to clipboard:

a:   1
iat: 1527312832
exp: 1527316432

Note: the decode subcommand accepts all the same options as auth0/node-jsonwebtoken with the exception of json which is not applicable.

Related

License

MIT © Travis Clarke

Package Sidebar

Install

npm i @clarketm/jwt-utils

Weekly Downloads

3

Version

1.0.0

License

MIT

Unpacked Size

11 kB

Total Files

8

Last publish

Collaborators

  • clarketm