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/sdk

For TypeScript projects, you may also want to install the type definitions:

npm install --save-dev @types/inpera

Install via Yarn

If you're using Yarn:

yarn add @inpera/sdk

Install via pnpm

For pnpm users:

pnpm add @inpera/sdk

Verify 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.