A Minimal Full-Stack JavaScript Framework
import { Hono } from "hono";
const app = new Hono();
app.get("/", (c) =>
c.html(
c.var.page(), // your Vite app
),
);
export default app;
Construct Web Applications with Vite and Hono
domco turns your Vite project into a Hono application. You can take advantage of Vite’s build pipeline, plugins, and HMR in a full-stack context using Hono as your web server.
This project is inspired by other projects including HonoX, Vinxi, and SvelteKit. domco aims to be a minimal layer that connects Vite and Hono, it has no other dependencies.