v0.2.0 — views + edge-safe core
Keel v0.2.0 — views, and a core that runs on the edge. ⚓
Added
- View layer — a
Viewservice that renders Hono JSX components to HTML. Views live inresources/views/; layouts are just components. Platform-neutral — the same views run on Node and Cloudflare Workers. (docs/views.md) keel/corepackage export — the framework core is now installable by other apps:import { Application } from "keel/core". Onlysrc/coreships in the package.
Changed
- Workers-safe core —
Applicationno longer statically imports Node built-ins or dotenv; they load dynamically only when filesystem config discovery runs. Configure inline on filesystem-less runtimes withboot(providers, { discoverConfig: false, config }).
This unlocks the two-repo model (like laravel/framework + laravel/laravel): keel is the library; apps install it and build on keel/core.