JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1400
  • Score
    100M100P100Q100545F
  • License MIT

Node.js SDK for interacting with the Kelviq API.

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-sdk

Quick 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