0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
Web Framework built on Web Standards https://hono.dev/
Go to file
2021-12-15 05:26:01 +09:00
src Add source files 2021-12-15 04:58:45 +09:00
.gitignore
LICENSE Create LICENSE (#1) 2021-12-15 05:06:31 +09:00
package.json Update package.json 2021-12-15 05:26:01 +09:00
README.md Update readme 2021-12-15 05:17:56 +09:00
yarn.lock Add source files 2021-12-15 04:58:45 +09:00

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