Files
illusory-mapp/apps/processor/src/index.ts
2026-02-28 16:20:47 +02:00

19 lines
326 B
TypeScript

import { serve } from "@hono/node-server";
import { Hono } from "hono";
const app = new Hono();
app.get("/", (c) => {
return c.text("Hello Hono!");
});
serve(
{
fetch: app.fetch,
port: 3000,
},
(info) => {
console.log(`Server is running on http://localhost:${info.port}`);
},
);