@mixcore-sdk/client
v0.0.1
Published
Official JavaScript/TypeScript SDK for Mixcore services.
Readme
@mixcore/sdk-client
Official JavaScript/TypeScript SDK for Mixcore services.
Installation
npm install @mixcore/sdk-client
# or
yarn add @mixcore/sdk-client
# or
pnpm add @mixcore/sdk-clientUsage
import { MixcoreClient } from '@mixcore/sdk-client';
const client = new MixcoreClient({
apiKey: 'your-api-key',
// Optional: override the default base URL
baseUrl: 'https://api.mixcore.com'
});
// Example: Get service status
const status = await client.getStatus();
console.log(status);Development
This package is built using TypeScript and bundled with tsup.
Available Scripts
pnpm build- Build the packagepnpm dev- Build the package in watch modepnpm lint- Run ESLintpnpm clean- Clean build artifacts
License
MIT
