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/
src | ||
.gitignore | ||
LICENSE | ||
package.json | ||
README.md | ||
yarn.lock |
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