Package Exports
- @kelviq/node-sdk
- @kelviq/node-sdk/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@kelviq/node-sdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Kelviq Node SDK
The official Node.js SDK for interacting with the Kelviq API. Manage customers, checkout sessions, entitlements, usage reporting, and subscriptions from your backend.
Installation
npm install @kelviq/node-sdkQuick Start
import { Kelviq } from '@kelviq/node-sdk';
const client = new Kelviq({ accessToken: process.env.KELVIQ_API_KEY });
// Check feature access
const hasAccess = await client.entitlements.hasAccess({
customerId: "cust_123",
featureId: "premium-reporting"
});Documentation
For full documentation, including setup guides and API reference, visit docs.kelviq.com.
License
MIT