@clowk/sdk

User-facing convenience package

Install

npm install @clowk/sdk

Overview

Re-exports everything from @clowk/core under a clean import path. Use this if you want a single dependency instead of importing from @clowk/core directly.

import { configure, verifyToken } from '@clowk/sdk'

configure({
  publishableKey: 'pk_live_...',
  secretKey: 'sk_live_...',
})

const user = await verifyToken(token)

On this page