Hono & bun
Prerequisites
Section titled “Prerequisites”- Bun installed
- An existing Hono project (or create one with
bun create hono myapp) - Claudette installed and running
Configuration
Section titled “Configuration”Create a .claudette.json in your project root:
{ "scripts": { "setup": "bun install" }, "instructions": "This is a Hono web framework project using Bun. Use TypeScript strict mode. Prefer Hono's built-in middleware."}Add to Claudette
Section titled “Add to Claudette”- Open Claudette and click + Add Repo
- Select your Hono project directory
- Create a new workspace —
bun installruns automatically
Example Prompts
Section titled “Example Prompts”“Add a REST API with CRUD endpoints for a todo list using Hono’s router groups”
“Set up JWT authentication middleware with refresh tokens”
“Add OpenAPI documentation using @hono/zod-openapi”
- Hono is lightweight and runtime-agnostic — mention the target runtime (Bun, Cloudflare Workers, Node.js) in your instructions
- If you’re deploying to Cloudflare Workers, add that context:
"instructions": "Hono app deployed to Cloudflare Workers. Use Workers-compatible APIs."