···11-import { serve } from "@hono/node-server";
22-import { Hono } from "hono";
33-import { html } from "hono/html";
44-import { showRoutes } from "hono/dev";
55-import { Foo } from "./foo";
11+import { Hono } from "npm:hono";
22+import { showRoutes } from "npm:hono/dev";
33+import { html } from "npm:hono/html";
44+import { Foo } from "./foo.tsx";
6576const app = new Hono();
87···24232524const port = 3000;
26252727-serve({ ...app, port });
2626+Deno.serve({ port }, app.fetch);
2827showRoutes(app);