> ## Documentation Index
> Fetch the complete documentation index at: https://docs.elding.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install the Elding SDK.

```bash theme={null}
npm install @elding/sdk
```

<Warning>
  Always use the **scoped** name `@elding/sdk`. `npm install elding` (without the
  `@elding/` scope) installs an **unrelated** third-party package, not Elding.
</Warning>

## Recommended: `configure()`

Write your HTTP API integrations once and use them in both development and production.
Switching between the local proxy and direct provider access is automatic.

<Card title="configure()" icon="wand-magic-sparkles" href="/en/sdk/configure">
  The recommended pattern: write once and deploy anywhere.
</Card>

<Note>
  Elding only handles HTTP API keys. `DATABASE_URL`, `JWT_SECRET`, `REDIS_URL`, and other
  non-HTTP variables remain with your hosting platform.
</Note>
