Clear docs, intuitive APIs, and code that just works
We've built NE-Auth with developers in mind. Our SDKs handle the complexity of OAuth, OIDC, and session management so you can focus on building your application.
Choose your framework, install the SDK, and you're ready to authenticate users.
Quick Start Guide# Install the SDK
npm install @ne-auth/nextjs
# Add environment variables
NE_AUTH_DOMAIN=your-app.ne-auth.com
NE_AUTH_CLIENT_ID=your_client_id
NE_AUTH_CLIENT_SECRET=your_secret
# That's it! You're ready to go ๐
First-class support for popular frameworks and languages
Everything you can do in the dashboard, you can do via API. Full programmatic control over users, connections, and configuration.
CRUD operations for users, roles, and organisations.
Programmatic login, logout, and token management.
Real-time notifications for auth events.
// Create a new user via Management API
const user = await neauth.users.create({
email: 'user@example.com',
password: 'SecurePass123!',
metadata: {
role: 'admin',
team: 'engineering'
}
});
// Assign a role
await neauth.users.assignRole(
user.id,
'org_admin'
);
Comprehensive guides, tutorials, and API references.
Test your integration without affecting production.
Interactive API documentation with live examples.
Discord community and GitHub discussions.
10,000 free MAUs. No credit card required.