0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/README.md
2021-12-15 05:17:56 +09:00

387 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