You can use this repo to develop fullstack web app powered by react & hono & vite.
- Completely decoupled front-end and back-end
- File system-based routing conventions
/a/[b]/index.tsx-->/a/:b/a/-[b]/index.tsx-->/a/:b?/a/b/index.tsx-->/a/b/a/-b/index.tsx-->/a/b?/a/[...b]/index.tsx-->/a/:b,/a/:b/:c...
- Both frontend and backend development support hot reloading
- One-click full-stack application build
- run
npm run dev- write api under
src/server - write web page under
src/app
- write api under
- run
npm run buildto build both frontend and backend - run
npm run previewto preview the built app