# @cubekit-cloud/cubekit-sdk-js

> itaces-crud format client for Cubekit (search/get/create/update/delete)

Latest version **2.0.2** (published 2026-08-25) · ISC license · 0 weekly downloads

## Install

```sh
npm install @cubekit-cloud/cubekit-sdk-js
pnpm add @cubekit-cloud/cubekit-sdk-js
yarn add @cubekit-cloud/cubekit-sdk-js
bun add @cubekit-cloud/cubekit-sdk-js
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 2.0.2 |
| Published | 2026-08-25 |
| First published | 2024-02-14 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 283 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Ivan Fontosh |
| Maintainers | itacesdev, ifontosh |
| Keywords | cubekit, sdk, cubekit-client, cubekit-cloud |

## Links

- npm: https://www.npmjs.com/package/@cubekit-cloud/cubekit-sdk-js
- Repository: https://github.com/cubekit-cloud/cubekit-sdk-js
- Homepage: https://github.com/cubekit-cloud/cubekit-sdk-js#readme
- Issues: https://github.com/cubekit-cloud/cubekit-sdk-js/issues
- npm.io page: https://npm.io/package/@cubekit-cloud/cubekit-sdk-js

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^1.6.7

## Recent versions

- 2.0.2 (latest) — 2026-08-25
- 2.0.1 — 2026-08-24
- 2.0.0 — 2026-08-24
- 1.0.69 — 2026-08-21
- 1.0.68 — 2026-03-13
- 1.0.67 — 2026-03-05
- 1.0.66 — 2026-03-05
- 1.0.65 — 2026-03-05
- 1.0.64 — 2026-02-24
- 1.0.63 — 2026-02-11
- 1.0.62 — 2026-02-11
- 1.0.61 — 2026-02-11
- 1.0.60 — 2026-02-10
- 1.0.59 — 2026-02-10
- 1.0.58 — 2026-02-10
- … 58 more at https://npm.io/package/@cubekit-cloud/cubekit-sdk-js/versions

## README

# @cubekit-cloud/cubekit-sdk-js

Format client for **itaces-crud** HTTP. Same methods for tenant (cookie) and a host without BFF (`baseUrl` + api-key).

```ts
import { createFormatClient, passthroughItemSchema } from '@cubekit-cloud/cubekit-sdk-js';

const api = createFormatClient({
  baseUrl: 'https://orm-data.example.com',
  auth: { type: 'apiKey', value: process.env.API_KEY! },
});

const { items } = await api.search(
  { path: '/api/v1.0/orm-data/Book' },
  passthroughItemSchema,
  { where: [{ column: 'title', value: 'Dune' }] },
  { page: 1, limit: 20 },
);
```

Tenant same-origin: `createFormatClient({ baseUrl: '', auth: { type: 'cookie' } })`. Console: pass `http` from `@cubekit/console-session`.

Do not build this HTTP in the app. `@cubekit/crud-client` is deprecated — use this package.

---
_Source: https://npm.io/package/@cubekit-cloud/cubekit-sdk-js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
