React SSR Framework with NodeJS and Deno
The simplified & light SSR front framework, offering greater flexibility than Next.js and Remix.Run, empower to build powerful front-end applications.
- File based routing
- Nested routing
- Memorize scroll position
- Server-side fetching
- Supports NodeJS runtime
- Page reload on edit
- Asynchronous Page module load
# pnpx create-lunarx-app example ( Unavailable yet )
$ pnpm add lunarx
# or
$ npm add lunarx
$ lunarx dev
$ lunarx start
$ lunarx build
You could refer /examples/basic
or /tests/samples/basic
for now.
Lunar uses esbuild
to quickly create a split-bundle source structure.
Lunar uses SWC
for transpile to ensure compatibility with both client-side and Node.js runtimes.
Files ending in .server.tsx
will only be executed on the server side and won't be exposed to the public.
- Support error & 404 page
- Optimize and persist routing states from upper nested routing rendering & fetch
Server Action
like submit as Post- Support deno-runtime
Iweavetales@github