Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
The npm package jwt-decode-es receives a total of 370 weekly downloads. As such, jwt-decode-es popularity was classified as not popular.
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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.