Installation

Node.js

Set up the Interna SDK in a Node.js or TypeScript project.

Requirements

  • Node.js 18.0+
  • npm 9+, yarn 1.22+, or pnpm 8+
  • TypeScript 5.0+ (recommended)

Setup

Terminal
npm install @interna/sdk

TypeScript Configuration

The SDK ships with full TypeScript declarations. No additional @types packages are needed. Enable strict mode in your tsconfig.json for the best developer experience.

tsconfig.json
{
  "compilerOptions": {
    "strict": true,
    "moduleResolution": "bundler",
    "target": "ES2022"
  }
}