is-jwt-valid

1.0.2 • Public • Published

Is JWT Valid

Pass a JWT token and get a boolean if the token is valid, the requirements for a valid token are defined by the official RFC 7519 standard

Zero Dependencies

Install

npm

npm install is-jwt-valid

yarn

yarn add is-jwt-valid

Usage

isJwtValid(JWT_TOKEN<STRING>)

Example

isJwtValid('this is no valid token') // returns false
isJwtValid('some.valid.token')   // returns true

Support

Browser Under the hood it uses the window.atob() native feature which is supported in each major browser and IE from version 10 (check mozilla dev site)

Node Uses the native Buffer API from node (check node documentation)

Package Sidebar

Install

npm i is-jwt-valid

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

4.31 kB

Total Files

4

Last publish

Collaborators

  • levi.nunnink