Gathering detailed insights and metrics for jwks-rsa
Gathering detailed insights and metrics for jwks-rsa
Gathering detailed insights and metrics for jwks-rsa
Gathering detailed insights and metrics for jwks-rsa
jose
JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes
jwks-client
Library to retrieve public keys from a JWKS endpoint
@foal/jwks-rsa
Integration of the library jwks-rsa with FoalTS
mock-jwks
A tool to mock a JWKS for development of microservices who consume jwts signed with RSA
A library to retrieve RSA public keys from a JWKS (JSON Web Key Set) endpoint.
npm install jwks-rsa
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (97.86%)
TypeScript (2.14%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
856 Stars
411 Commits
239 Forks
23 Watchers
14 Branches
116 Contributors
Updated on Jun 25, 2025
Latest Version
3.2.0
Package Id
jwks-rsa@3.2.0
Unpacked Size
27.43 kB
Size
8.53 kB
File Count
23
NPM Version
10.8.2
Node Version
18.20.7
Published on
Mar 18, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
📚 Documentation - 🚀 Getting Started - 💬 Feedback
Using npm in your project directory run the following command:
1npm install --save jwks-rsa
Supports all currently registered JWK types and JWS Algorithms, see panva/jose#262 for more information.
Provide a JWKS endpoint which exposes your signing keys.
1const jwksClient = require('jwks-rsa');
2
3const client = jwksClient({
4 jwksUri: 'https://sandrino.auth0.com/.well-known/jwks.json',
5 requestHeaders: {}, // Optional
6 timeout: 30000 // Defaults to 30s
7});
Then use getSigningKey
to retrieve a signing key that matches a specific kid
.
1const kid = 'RkI5MjI5OUY5ODc1N0Q4QzM0OUYzNkVGMTJDOUEzQkFCOTU3NjE2Rg'; 2const key = await client.getSigningKey(kid); 3const signingKey = key.getPublicKey();
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
To provide feedback or report a bug, please raise an issue on our issue tracker.
Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?
This project is licensed under the MIT license. See the LICENSE file for more info.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
all changesets reviewed
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
SAST tool detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
21 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More