Installation

Install the EnterestOS SDK in your React or Next.js app.

1 minPrerequisites: Node.js installed

Problem: You need the EnterestOS SDK available in your project before you can track any responses.

Solution: Install the package with your preferred package manager — it takes under 30 seconds.

npm

bash
npm install @enterestos/sdk

yarn

bash
yarn add @enterestos/sdk

pnpm

bash
pnpm add @enterestos/sdk

bun

bash
bun add @enterestos/sdk

Verify Installation

typescript
import { createEnterestOS } from '@enterestos/sdk';
// No error = installed correctly

Result: You now have @enterestos/sdk available to import in any file in your project.

Common Questions

How do I install the EnterestOS SDK in a Next.js project?

Run npm install @enterestos/sdk in your project root. Then import createEnterestOS from '@enterestos/sdk' in any client component (add 'use client' at the top for App Router).