Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Initial release

Compare
Choose a tag to compare
@blakeembrey blakeembrey released this 27 Jul 06:11
· 36 commits to main since this release
3441645

Fully functional server-side rendering react.js application framework. Kind of opinionated in some senses, largely inspired by next.js but with slightly different goals. Goals as of today are specific to my projects, but likely useful for others:

  1. Supports Cloudflare Workers (this means JS only, no node.js interface dependencies in production)
  2. Geared toward server-side rendering (I don't have use-cases for static site rendering, the complexity is not needed)
  3. Support any server-side framework (generic request/response interfaces can work with node.js to avoid lock-in)
  4. Minimal JS and networking overhead (this means not any preloading or magic no-reload page clicks right now)
  5. Support for zero JS pages (optionally turn off hydration in the future, or allow client-side only pages)