0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00
hono/README.md
2021-12-15 05:31:37 +09:00

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.

Author

Yusuke Wada https://github.com/yusukebe

License

MIT