Back

Version 3

5/18/2024
/** @jsxImportSource https://esm.sh/hono@latest/jsx **/

import { Hono } from "npm:hono@3";

const app = new Hono();
app.get("/", (c) => c.html(<h1>Hello from Hono!</h1>));
app.get("/yeah", (c) => c.html("Routing!"));
export default app.fetch;
willthereader-honoexample.web.val.run
Updated: May 18, 2024