0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
Web Framework built on Web Standards https://hono.dev/
Go to file
2021-12-15 13:28:12 +09:00
example/basic Add example 2021-12-15 11:41:28 +09:00
src Support all method 2021-12-15 13:28:12 +09:00
.gitignore Initial commit 2021-12-15 04:26:22 +09:00
hono.mini.js Add example 2021-12-15 11:41:28 +09:00
LICENSE Create LICENSE (#1) 2021-12-15 05:06:31 +09:00
package.json Add example 2021-12-15 11:41:28 +09:00
README.md Add related projects 2021-12-15 05:31:37 +09:00
yarn.lock Add example 2021-12-15 11:41:28 +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