Skip to content

HonoWeb 应用框架

快速、轻量,建立在 Web 标准之上,支持任意 JavaScript 运行时。

一段 Hono 示例代码。 import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hello Hono!')) export default app

Released under the MIT License.