serlina
A progressive React serverside-rendering framework.
Motivation
I love using Next.js, but most of my projects need to use our own web server framework while Next.js run it own server. So I begin making a SSR framework (core) that like Next.js but open for server implementation. It does all the building, compiling, rendering-to-string things and give the rest render-to-html things to your own web server.
Of course I know Next.js can custom server and routing, but while Next.js handle the whole http
context
, I cannot use it in a high layer web framework.
Integrations
Quick Start
npm i serlina react react-dom --save
Create a folder structure like:
And implement a most simple http server:
Open http://localhost:8090/page1
, you will see the page you wrote in React!