oslo-project / jwt

Parse and encode JSON web tokens
https://jwt.oslojs.dev
MIT License
96 stars 1 forks source link

@oslojs/jwt

Documentation: https://jwt.oslojs.dev

A JavaScript library for parsing and encoding JSON web tokens (JWT) by Oslo. Only signed tokens are supported.

import { parseJWT, JWSRegisteredHeaders, JWTRegisteredClaims, joseAlgorithmHS256 } from "@oslojs/jwt";

const [header, payload, signature] = parseJWT(jwt);
const headerParameters = new JWSRegisteredHeaders(header);
if (header.algorithm() !== joseAlgorithmHS256) {
    throw new Error("Unsupported algorithm");
}
const claims = new JWTRegisteredClaims(payload);
if (!claims.verifyExpiration()) {
    throw new Error("Expired token");
}
if (claims.hasNotBefore() && !claims.verifyNotBefore()) {
    throw new Error("Invalid token");
}

Installation

npm i @oslojs/jwt