@checkoutkit/hono
v0.2.0
Published
hono adapter for @checkoutkit/server
Maintainers
Readme
@checkoutkit/hono
Hono adapter for @checkoutkit/server.
pnpm add @checkoutkit/server @checkoutkit/honoimport { Hono } from "hono";
import { createAcpServer } from "@checkoutkit/server";
import { mountAcp } from "@checkoutkit/hono";
const acp = createAcpServer({ backend, basePath: "/acp" });
const app = new Hono();
mountAcp(app, acp, "/acp");Hono is already Request/Response native, so this is a thin binding —
toHonoHandler(acp) is available if you would rather register routes yourself.
Typed structurally, so it adds no dependency on Hono.
CheckoutKit is an independent community implementation of the Agentic Commerce Protocol. It is not affiliated with, sponsored by, or endorsed by OpenAI or Stripe.
Part of CheckoutKit · Apache-2.0
