All articles

Installation

Installation

Get up and running in minutes with our CLI or package manager.

Requirements

  • Node.js 18 or higher
  • npm, yarn, or pnpm

Install with npm

Run the install command in your project directory. After installation, import the SDK in your application code.

Verify Installation

Check the installed version to confirm everything works correctly.

Code Samples

Install via npm
bash
npm install @acme/sdk
Import the SDK
javascript
import { Client } from '@acme/sdk';

const client = new Client({ apiKey: process.env.API_KEY });
Verify version
bash
npx @acme/sdk --version