Installation
The package is public on npmjs — no token or registry configuration required.
bash
# npm
npm install @shopimind/sdk-shopimind
# yarn
yarn add @shopimind/sdk-shopimind
# pnpm
pnpm add @shopimind/sdk-shopimindaxios (the single runtime dependency) is installed automatically.
Pin a version
For a reproducible installation, pin the version:
bash
yarn add @shopimind/sdk-shopimind@1.0.2The SDK follows SemVer — see Scope & versions.
Requirements
| Item | Version |
|---|---|
| Node.js | ≥ 14 |
| Modules | CommonJS (require) and ESM / TypeScript (import) |
| Dependency | axios (installed automatically) |
Verify the installation
bash
node -e "console.log(Object.keys(require('@shopimind/sdk-shopimind')).length)"
# → number of available exports (SpmClient, SpmCustomers, …)Next step: Usage.