Getting Started
Prerequisites
Section titled “Prerequisites”Before you begin, make sure you have:
- Node.js 18 or later
- npm, yarn, or pnpm package manager
- An Acme account with an API key (sign up here)
Installation
Section titled “Installation”npm install @acme/sdkyarn add @acme/sdkpnpm add @acme/sdkQuick Start
Section titled “Quick Start”-
Import the SDK
import { AcmeClient } from "@acme/sdk"; -
Initialize the client
const client = new AcmeClient({apiKey: process.env.ACME_API_KEY,}); -
Make your first request
const result = await client.resources.list();console.log(result);
Next Steps
Section titled “Next Steps”Now that you have the SDK installed, explore these guides:
- Core Concepts — Understand the architecture
- Authentication — Configure API keys and tokens
- API Reference — Full method reference