AuthHero Installation
Requirements
- Node.js (version 16 or higher)
- npm, yarn, or pnpm package manager
Installation
Install the AuthHero package in your project:
bash
pnpm add authheroOr using npm:
bash
npm install authheroOr using yarn:
bash
yarn add authheroBasic Usage
Here's a basic example of integrating AuthHero in your application:
typescript
import { AuthHero } from "authhero";
// Configuration details will go here
const authHero = new AuthHero(config);
// Authentication methods will be shown hereNext Steps
After installation, you'll need to configure AuthHero for your specific use case. See the Configuration page for details.