Installation

How to install the Acme SDK in your project.

Installation

Get started with the Acme SDK in your project.

Requirements

  • Node.js 18.0 or later
  • npm, yarn, or pnpm

Quick Start

Install the SDK using your preferred package manager:

# npm
npm install @acme/sdk@1.2.0

# yarn
yarn add @acme/sdk@1.2.0

# pnpm
pnpm add @acme/sdk@1.2.0

Verify Installation

Create a simple test to verify the SDK is working:

import { Acme } from '@acme/sdk';

const client = new Acme({
  apiKey: process.env.ACME_API_KEY,
});

// Test the connection
const status = await client.ping();
console.log('Acme SDK connected:', status);

Version Compatibility

SDK VersionNode.jsAPI Version
1.2.x≥18.0v3
1.1.x≥16.0v2
1.0.x≥14.0v1

Upgrading? See the migration guide for breaking changes between versions.

Next Steps

Once installed, head to Configuration to set up your API credentials.