Skip to main content
@otim/sdk-server

Prerequisites

Install

The Otim SDK is available on NPM and can be installed with your favorite package manager.
# pnpm
pnpm add @otim/sdk-server

# npm
npm install @otim/sdk-server

# yarn
yarn add @otim/sdk-server

TypeScript Requirements

We support TypeScript v5.0+ and require the following tsconfig.json settings:
{
  "compilerOptions": {
    "strict": true
  }
}
It is highly recommended to set strict: true in your tsconfig.json. This is the single most impactful setting for ensuring type safety.