• Precios
  • Blog
Iniciar sesiónAgendá una demo
Introducción

Inicio rápido

Integrar con Next.jsIntegrar con RemixIntegrar con NuxtIntegrar con SvelteKitIntegrar con AstroIntegrar con ExpressIntegrar con HonoIntegrar con Bun

Aprender

Recursos

Referencia del SDKVersionado de APIManejo de erroresTestingCLI

Plugins

Better Auth
DocumentaciónRecursosConstruir con AIAPI ReferenceWebhooks

Integrar con Bun

Agrega cobros y pagos a tu aplicación de Bun.

Instala la Commet Skill para que tu agente integre el SDK actual y valide su trabajo contra el contrato vivo de la API.

npx skills add commet-labs/skills --skill commet

Instalar

bun add @commet/node

Configurar

.env
COMMET_API_KEY=ck_sandbox_xxx
src/commet.ts
import { Commet } from '@commet/node'

export const commet = new Commet({
  apiKey: Bun.env.COMMET_API_KEY!,
})

Suscribir

src/index.ts
import { commet } from './commet'

Bun.serve({
  port: 3000,
  async fetch(req) {
    const url = new URL(req.url)

    if (url.pathname === '/subscribe' && req.method === 'POST') {
      const { customerId, email } = await req.json()

      await commet.customers.create({ email, id: customerId })

      const subscription = await commet.subscriptions.create({
        customerId,
        planCode: 'pro',
      })

      return Response.json({ checkoutUrl: subscription.checkoutUrl ?? null })
    }

    return new Response('Not Found', { status: 404 })
  },
})

Verificar Acceso

Agrega estas rutas al handler fetch.

src/index.ts
if (url.pathname.startsWith('/subscription/') && req.method === 'GET') {
  const customerId = url.pathname.split('/')[2]

  const subscription = await commet.subscriptions.getActive({ customerId })

  if (!subscription) {
    return Response.json({ error: 'no_active_subscription' }, { status: 404 })
  }

  return Response.json({ status: subscription.status })
}

if (url.pathname.startsWith('/features/') && req.method === 'GET') {
  const [, , feature, customerId] = url.pathname.split('/')

  const access = await commet.featureAccess.get({ code: feature, customerId })

  return Response.json({ allowed: access.allowed })
}

Trackear Uso

src/index.ts
if (url.pathname === '/usage' && req.method === 'POST') {
  const { customerId } = await req.json()

  await commet.usage.track({
    customerId,
    featureCode: 'api_calls',
    value: 1,
  })

  return Response.json({ tracked: true })
}

El uso se agrega y se cobra al final del período.

Portal del Cliente

src/index.ts
if (url.pathname === '/portal' && req.method === 'GET') {
  const customerId = url.searchParams.get('customerId')!

  const portal = await commet.portal.getUrl({ customerId })

  return Response.redirect(portal.portalUrl)
}

Relacionado

  • Suscripciones
  • Trackear Uso
  • Portal del Cliente
  • Referencia del SDK

¿Cómo está esta guía?

Integrar con Hono

Agrega cobros y pagos a tu aplicación de Hono.

Integrar con Python

Instala y configura el SDK de Commet para Python.

On this page

Instalar
Configurar
Suscribir
Verificar Acceso
Trackear Uso
Portal del Cliente
Relacionado