🔍ESC
Type to start searching...
⚡ Powered by Hono + Scalar + Cloudflare Workers

Next-Gen Documentation &
Interactive API Reference

A complete edge-native documentation platform. Author documentation in Markdown with instant SSR, type-safe OpenAPI endpoints, and interactive Scalar API playground.

Get Started with Docs →Interactive API Reference 🚀
🔥

Hono Web Framework

Ultra-fast router and middleware engine built on Web Standards. Ultra-low latency cold starts.

📖

Scalar API Reference

Stunning modern UI for OpenAPI 3.1 specifications with interactive request testing and live schema viewer.

📝

Markdown & Frontmatter

Author guide articles in standard Markdown with YAML frontmatter, GitHub alerts, code highlighting, and TOC.

☁️

Cloudflare Workers

Deploy anywhere worldwide with zero configuration. Scalable serverless architecture with global CDN caching.

src/index.ts
import { OpenAPIHono } from '@hono/zod-openapi'
import { Scalar } from '@scalar/hono-api-reference'

const app = new OpenAPIHono()

// Mount interactive Scalar API playground
app.get('/reference', Scalar({ url: '/openapi.json' }))

// Export Cloudflare Workers entrypoint
export default app