import { serve } from '../../honojs/node-server/dist/index.mjs' import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hi')) app.get('/json', (c) => c.json({ hello: 'world' }) ) const port = 3001 console.log(port) serve({ fetch: app.fetch, port })