AuthenticationClient | Auth0 Node.js SDK
Auth0 Authentication API Client
Provides access to Auth0's authentication endpoints for login, signup, passwordless authentication, and token exchange operations.
Example: Basic setup
import { AuthenticationClient } from 'auth0';const auth0 = new AuthenticationClient({
domain: 'your-tenant.auth0.com',
clientId: 'your-client-id'
});