Release v4.0.0 ยท honojs/hono
Going to full-stack.
Hono v4.0.0 is out! This major update includes some breaking changes and the addition of three major features.
Static Site Generation
Client Components
File-based Routing
So Hono is going to full-stack. Let's take a look at the three features.
1. Static Site Generation
We introduce SSG Helper. With it you can generate static pages of your Hono applications.
To use this, create a separate file build.ts from the application and call the toSSG() function in it.
import fs from '...
Read more at github.com