-
-
Notifications
You must be signed in to change notification settings - Fork 599
Description
Is your feature request related to a problem? Please describe.
The current frontend SSR is tied to Express, which works fine for Docker but locks the project into a Node.js runtime. This makes it impossible to deploy the frontend to serverless or edge platforms like Cloudflare Workers.
Describe the solution you'd like
I'd like to propose migrating frontend/server.js from Express to Hono.
Since Hono uses Web Standard Request/Response objects (matching what React Router v7 expects), it would allow the frontend to run on Cloudflare Workers, Deno, or Bun, while keeping full backward compatibility for existing Docker/Node.js users via @hono/node-server.
Additional context
I’ve already looked into the implementation and it's a pretty straightforward swap for the server wrapper. I'm happy to do the work and open a PR if the team is interested in adding more deployment options.