- Documentation
- Getting Started
- Installation
Getting Started
Installation
Learn how to install Inpera in your project and get started quickly
Prerequisites
Before installing Inpera, make sure you have the following prerequisites:
- Node.js 18.0 or higher
- npm, yarn, or pnpm package manager
- A modern web browser (Chrome, Firefox, Safari, or Edge)
- An Inpera account (sign up at inpera.app)
Install via npm
The easiest way to install Inpera is using npm:
npm install @inpera/sdkFor TypeScript projects, you may also want to install the type definitions:
npm install --save-dev @types/inperaInstall via Yarn
If you're using Yarn:
yarn add @inpera/sdkInstall via pnpm
For pnpm users:
pnpm add @inpera/sdkVerify Installation
To verify that Inpera is installed correctly, create a test file:
import { Inpera } from '@inpera/sdk';
const inpera = new Inpera({
apiKey: 'your-api-key'
});
console.log('Inpera installed successfully!');Run this file and you should see the success message. If you encounter any errors, check the troubleshooting section.