Skip to main content

Installation

Learn how to install the FastAuth JavaScript Provider in your project.

Prerequisites

  • Node.js 16 or higher
  • npm, yarn, or pnpm package manager

Installation

Install the JavaScript Provider using your preferred package manager:

npm install @peersyst/fast-auth-provider-javascript

Or with yarn:

yarn add @peersyst/fast-auth-provider-javascript

Or with pnpm:

pnpm add @peersyst/fast-auth-provider-javascript

Verify Installation

After installation, you can verify that the package is installed correctly by importing it in your project:

import { FastAuthProvider } from '@peersyst/fast-auth-provider-javascript';

console.log('FastAuth Provider installed successfully!');

Next Steps