auth0/express-jwt is a security-focused project on GitHub with 4.5k stars, written primarily in TypeScript. connect/express middleware that validates a JsonWebToken (JWT) and set the req.user with the attributes
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
This module provides Express middleware for validating JWTs (JSON Web Tokens) through the jsonwebtoken module. The decoded JWT payload is available on the request object.
Install
$ npm install express-jwt
API
expressjwt(options)
Options has the following parameters:
secret: jwt.Secret | GetVerificationKey (required): The secret as a string or a function to retrieve the secret.
getToken?: TokenGetter (optional): A function that receives the express Request and returns the token, by default it looks in the Authorization header.
isRevoked?: IsRevoked (optional): A function to verify if a token is revoked.
onExpired?: ExpirationHandler (optional): A function to handle expired tokens.
credentialsRequired?: boolean (optional): If its false, continue to the next middleware if the request does not contain a token instead of failing, defaults to true.
requestProperty?: string (optional): Name of the property in the request object where the payload is set. Default to req.auth.
Plus... all the options available in the jsonwebtoken verify function.
The available functions have the following interface:
var { expressjwt: jwt } = require("express-jwt");
// or ES6
// import { expressjwt, ExpressJwtRequest } from "express-jwt";
app.get(
"/protected",
jwt({ secret: "shhhhhhared-secret", algorithms: ["HS256"] }),
function (req, res) {
if (!req.auth.admin) return res.sendStatus(401);
res.sendStatus(200);
}
);
The decoded JWT payload is available on the request via the auth property.
The default behavior of the module is to extract the JWT from the Authorization header as an OAuth2 Bearer token.
Required Parameters
The algorithms parameter is required to prevent potential downgrade attacks when providing third party libraries as secrets.
:warning: Do not mix symmetric and asymmetric (ie HS256/RS256) algorithms: Mixing algorithms without further validation can potentially result in downgrade vulnerabilities.
This is especially useful when applying to multiple routes. In the example above, path can be a string, a regexp, or an array of any of those.
For more details on the .unless syntax including additional options, please see express-unless.
This module also support tokens signed with public/private key pairs. Instead of a secret, you can specify a Buffer with the public key
var publicKey = fs.readFileSync("/path/to/public.pub");
jwt({ secret: publicKey, algorithms: ["RS256"] });
Customizing Token Location
A custom function for extracting the token from a request can be specified with
the getToken option. This is useful if you need to pass the token through a
query parameter or a cookie. You can throw an error in this function and it will
be handled by express-jwt.
If you need to obtain the key dynamically from other sources, you can pass a function in the secret parameter with the following parameters:
req (Object) - The express request object.
token (Object) - An object with the JWT payload and headers.
For example, if the secret varies based on the issuer:
var jwt = require("express-jwt");
var data = require("./data");
var utilities = require("./utilities");
var getSecret = async function (req, token) {
const issuer = token.payload.iss;
const tenant = await data.getTenantByIdentifier(issuer);
if (!tenant) {
throw new Error("missing_secret");
}
return utilities.decrypt(tenant.secret);
};
app.get(
"/protected",
jwt({ secret: getSecret, algorithms: ["HS256"] }),
function (req, res) {
if (!req.auth.admin) return res.sendStatus(401);
res.sendStatus(200);
}
);
Secret rotation
The getSecret callback could also be used in cases where the same issuer might issue tokens with different keys at certain point:
var getSecret = async function (req, token) {
const { iss } = token.payload;
const { kid } = token.header;
// get the verification key by a given key-id and issuer.
return verificationKey;
};
Revoked tokens
It is possible that some tokens will need to be revoked so they cannot be used any longer. You can provide a function as the isRevoked option. The signature of the function is function(req, payload, done):
req (Object) - The express request object.
token (Object) - An object with the JWT payload and headers.
For example, if the (iss, jti) claim pair is used to identify a JWT:
You might want to use this module to identify registered users while still providing access to unregistered users. You can do this by using the option credentialsRequired:
A Request type is provided from express-jwt, which extends express.Request with the auth property. It could be aliased, like how JWTRequest is below.
import { expressjwt, Request as JWTRequest } from "express-jwt";
app.get(
"/protected",
expressjwt({ secret: "shhhhhhared-secret", algorithms: ["HS256"] }),
function (req: JWTRequest, res: express.Response) {
if (!req.auth?.admin) return res.sendStatus(401);
res.sendStatus(200);
}
);
Migration from v6
The middleware function is now available as a named import rather than a default one: import { expressjwt } from 'express-jwt'
The decoded JWT payload is now available as req.auth rather than req.user
The secret function had (req, header, payload, cb), now it can return a promise and receives (req, token). token has header and payload.
The isRevoked function had (req, payload, cb), now it can return a promise and receives (req, token). token has header and payload.
Related Modules
jsonwebtoken — JSON Web Token sign and verification
express-jwt-permissions - Permissions middleware for JWT tokens
Tests
$ npm install
$ npm test
Contributors
Check them out here
Issue Reporting
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
Author
Auth0
License
This project is licensed under the MIT license. See the LICENSE file for more info.
No homepage URL was recorded for auth0/express-jwt in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
How active is development on auth0/express-jwt?
The most recent commit recorded on auth0/express-jwt was 2 months ago, based on the GitHub push timestamp. The repository has 443 forks — one of the better signals of community interest.
How many stars does auth0/express-jwt have?
auth0/express-jwt has 4.5k GitHub stars — refresh the page for the live number, or check github.com/auth0/express-jwt. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is auth0/express-jwt open source?
Yes — auth0/express-jwt ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/auth0/express-jwt.
What else is in the Security space?
auth0/express-jwt is tracked by TopGit under the Security category, alongside 2 GitHub-tagged topics. Trending and Topics pages list peer repositories of comparable stars and language.
What topics is auth0/express-jwt associated with?
GitHub's repository topics for auth0/express-jwt: "express-jwt", "jwt". TopGit's editorial category is Security.
Where do I read more about auth0/express-jwt?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/auth0/express-jwt is the definitive source.
Read full README in the tab above.
Want a second opinion on express-jwt?
Ask an AI that can read this page — one click and you get its take on express-jwt.