Get Started in Minutes

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
terminal
# 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 ๐Ÿš€

Official SDKs

First-class support for popular frameworks and languages

โš›๏ธ

React

โ–ฒ

Next.js

๐Ÿ’š

Vue

๐Ÿ…ฐ๏ธ

Angular

๐ŸŸข

Node.js

๐Ÿ

Python

๐Ÿน

Go

๐Ÿ’Ž

Ruby

Comprehensive APIs

Everything you can do in the dashboard, you can do via API. Full programmatic control over users, connections, and configuration.

๐Ÿ‘ฅ

Management API

CRUD operations for users, roles, and organisations.

๐Ÿ”

Authentication API

Programmatic login, logout, and token management.

๐Ÿ””

Webhooks

Real-time notifications for auth events.

api-example.js
// 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'
);

Developer Resources

๐Ÿ“š

Documentation

Comprehensive guides, tutorials, and API references.

๐Ÿงช

Sandbox Environment

Test your integration without affecting production.

๐Ÿ“Š

API Explorer

Interactive API documentation with live examples.

๐Ÿ’ฌ

Community

Discord community and GitHub discussions.

Start Building Today

10,000 free MAUs. No credit card required.