
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
jwt-decode-es
Advanced tools
Decode JWT tokens. Use with NodeJs and browsers. Supports ES, CJS, UMD modules
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.
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.
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.
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>
Initial author Auth0 Updated to modern platform by Alexey Petushkov
This project is licensed under the MIT license. See the LICENSE file for more info.
FAQs
Decode JWT tokens. Use with NodeJs and browsers. Supports ES, CJS, UMD modules
We found that jwt-decode-es demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.