Getting Started with Easyauth
EasyAuth is a secure authentication service designed to be simple to integrate yet powerful enough for enterprise applications. Get up and running in minutes.
What's Included
- JWT-based authentication
- Email verification
- Password reset functionality
- Session management
- React hooks for easy integration
- Rate limiting protection
Quick Example
// Install the package
npm install keyjs
// Use in your React app
import { useAuth, signIn } from 'keyjs';
function App() {
const { user, isAuthenticated } = useAuth();
return isAuthenticated ? (
<div>Welcome, {user.username}!</div>
) : (
<LoginForm />
);
}
Need Help?
If you run into any issues during setup, check our support page or reach out to the community.