Gathering detailed insights and metrics for jwks-rsa-promisified
Gathering detailed insights and metrics for jwks-rsa-promisified
Gathering detailed insights and metrics for jwks-rsa-promisified
Gathering detailed insights and metrics for jwks-rsa-promisified
Promisified version of auth0/node-jwks-rsa, retrieve RSA public keys from a JWKS endpoint
npm install jwks-rsa-promisified
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
1 Stars
2 Commits
1 Branches
1 Contributors
Updated on Dec 05, 2019
Latest Version
1.0.2
Package Id
jwks-rsa-promisified@1.0.2
Unpacked Size
19.25 kB
Size
6.74 kB
File Count
6
NPM Version
5.8.0
Node Version
9.3.0
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
Add promisified methods to auth0/node-jwks-rsa
1npm install jwks-rsa-promisified
1const jwksClient = require('jwks-rsa-promisified'); 2 3const client = jwksClient({ 4 strictSsl: true, // Default value 5 jwksUri: 'https://sandrino.auth0.com/.well-known/jwks.json' 6}); 7 8async function retrieveKey() { 9 const kid = 'RkI5MjI5OUY5ODc1N0Q4QzM0OUYzNkVGMTJDOUEzQkFCOTU3NjE2Rg'; 10 const key = await client.getSigningKeyAsync(kid); 11 return key.publicKey || key.rsaPublicKey; 12}
1// type Jwk { 2// kid: string; 3// nbf?: number; 4// publicKey?: string; 5// rsaPublicKey?: string; 6// } 7client.getSigningKeyAsync(key); // => Promise<Jwk> 8client.getSigningKeysAsync(); // => Promise<Jwk[]> 9client.getKey(); // => Promise<Jwk>
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/2 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
16 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