Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jwt-decode-es

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jwt-decode-es

Decode JWT tokens. Use with NodeJs and browsers. Supports ES, CJS, UMD modules

  • 3.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
479
increased by3.68%
Maintainers
1
Weekly downloads
 
Created
Source

jwt-decode-es is a small browser library that helps decoding JWTs token which are Base64Url encoded. This is a fork of jwt-decode library which is not really supported.

IMPORTANT: This library doesn't validate the token, any well formed JWT can be decoded. You should validate the token in your server-side logic by using something like express-jwt, koa-jwt, Owin Bearer JWT, etc.

Installation

Install with npm npm i --save jwt-decode-es

In comparison with jwt-decode, it provides ES, UMD and CJS modules and has latest build dependencies with fixed vulnerbilities. It uses rollup bundler with terser plugin to minify sources. Current version is just 1.25 Kb for minified .mjs version.

Usage

import { jwt_decode } from "jwt-decode-es";
const token = "eyJ0eXAiO.../// jwt token";

const decoded = jwt_decode(token);
console.log(decoded);

/* prints:
 * { foo: "bar",
 *   exp: 1393286893,
 *   iat: 1393268893  }
 */

// decode header by passing in options (useful for when you need `kid` to verify a JWT):
const decodedHeader = jwt_decode(token, { header: true });
console.log(decodedHeader);

/* prints:
 * { typ: "JWT",
 *   alg: "HS256" }
 */

Note: A falsy or malformed token will throw an InvalidTokenError error.

Include with a script tag

Copy the file jwt-decode.min.js from the build/ folder to your project somewhere, then include like so:

<script src="jwt-decode.min.js"></script>

<script>
  var jwt_decode = jwt_decode_es.jwt_decode;
  var token = "eyJ0eXAiO.../// jwt token";
  var decoded = jwt_decode(token);
  console.log(decoded);
</script>

Author

Initial author Auth0 Updated to modern platform by Alexey Petushkov

License

This project is licensed under the MIT license. See the LICENSE file for more info.

Keywords

FAQs

Package last updated on 03 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc