Gathering detailed insights and metrics for auth0
Gathering detailed insights and metrics for auth0
Gathering detailed insights and metrics for auth0
Gathering detailed insights and metrics for auth0
npm install auth0
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
640 Stars
1,451 Commits
309 Forks
77 Watching
30 Branches
166 Contributors
Updated on 28 Nov 2024
Minified
Minified + Gzipped
TypeScript (99.88%)
JavaScript (0.12%)
Cumulative downloads
Total Downloads
Last day
-13.7%
105,585
Compared to previous day
Last week
0.3%
619,592
Compared to previous week
Last month
9.4%
2,548,535
Compared to previous month
Last year
39.6%
25,505,366
Compared to previous year
3
27
📚 Documentation - 🚀 Getting Started - 💻 API Reference - 💬 Feedback
This library supports the following tooling versions:
>=18
Using npm in your project directory run the following command:
1npm install auth0
This client can be used to access Auth0's Authentication API.
1import { AuthenticationClient } from 'auth0'; 2 3const auth0 = new AuthenticationClient({ 4 domain: '{YOUR_ACCOUNT}.auth0.com', 5 clientId: '{OPTIONAL_CLIENT_ID}', 6 clientSecret: '{OPTIONAL_CLIENT_SECRET}', 7});
See more examples.
The Auth0 Management API is meant to be used by back-end servers or trusted parties performing administrative tasks. Generally speaking, anything that can be done through the Auth0 dashboard (and more) can also be done through this API.
Initialize your client class with a client ID, client secret and a domain.
1import { ManagementClient } from 'auth0'; 2 3var management = new ManagementClient({ 4 domain: '{YOUR_TENANT_AND REGION}.auth0.com', 5 clientId: '{YOUR_CLIENT_ID}', 6 clientSecret: '{YOUR_CLIENT_SECRET}', 7});
Or, initialize your client class with an API v2 token and a domain.
1import { ManagementClient } from 'auth0'; 2 3var management = new ManagementClient({ 4 domain: '{YOUR_TENANT_AND REGION}.auth0.com', 5 token: '{YOUR_API_V2_TOKEN}', 6});
See more examples.
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.
The latest stable version of the package.
Stable Version
1
7.7/10
Summary
Authorization header is not sanitized in an error object in auth0
Affected Versions
< 2.27.1
Patched Versions
2.27.1
Reason
15 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
5 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
branch protection is not maximal on development and all release branches
Details
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
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
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