hono
中文地址:https://honodev.pages.dev/zh/
sh
pnpm create hono@latestsh
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
# return c.text('Hello Hono!')
return c.json({
hello: 'world'
})
})
export default app