@serverless-jwt/next
Advanced tools
Weekly downloads
Readme
JWT authorization for Next.js API Routes. Usage is easy:
import { NextJwtVerifier } from '@serverless-jwt/next';
const verifyJwt = NextJwtVerifier({
issuer: 'https://sandrino.auth0.com/',
audience: 'urn:my-api'
});
const apiRoute = async (req, res) => {
const { claims } = context.identityContext;
res.json({
user: claims
});
};
export default verifyJwt(apiRoute);
You can also provide a function to map the incoming claims to a format that is more usable in your application. This would allow you to rename certain claims or to change the claim from a string to an array:
import { NextJwtVerifier, removeNamespaces, claimToArray } from '@serverless-jwt/next';
const verifyJwt = NextJwtVerifier({
issuer: 'https://sandrino.auth0.com/',
audience: 'urn:my-api',
mapClaims: (claims) => {
// Custom claims added in Auth0 have a prefix, which are removed here.
const user = removeNamespaces('http://schemas.sandrino.dev/', claims);
// Convert the scope and roles claims to arrays so they are easier to work with.
user.scope = claimToArray(user.scope);
user.roles = claimToArray(user.roles);
return user;
}
});
FAQs
JWT verification for Next.js API Routes
The npm package @serverless-jwt/next receives a total of 1,002 weekly downloads. As such, @serverless-jwt/next popularity was classified as popular.
We found that @serverless-jwt/next 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 installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.