mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 02:27:49 +01:00
491 B
491 B
hono
Minimal web framework for Cloudflare Workers.
Install
$ yarn add hono
or
$ npm install hono
Hello hono!
const Hono = require("hono");
const app = Hono();
app.get("/", () => new Response("Hono!!"));
app.fire(); // call `addEventListener`
Then, run wrangler dev
.
Related projects
Author
Yusuke Wada https://github.com/yusukebe
License
MIT