It takes time to realize Server-side rendering is amazing.π It was the same for me. You get a ton of benefits with it. Mainly, first meaningful paint of the webpage is quick. It still has to download the js to make it interactive. But, users will not be staring at white (empty) pages for long.
As you might know, Preact is the 3KB alternative to React. It is a bit faster than React and very less in size. The API is mostly same and easy to adapt if you are coming from React.
Letβs see how we can do that using Node on the server. We will be using preact-router
for the routing at the client side.
This is the repo that I have created if you want to follow along.
mkdir
Create an empty directory and npm init it!
Now, we install the necessary things.
yarn add preact preact-router preact-render-to-string express
yarn add -D webpack webpack-cli babel-core babel-cli babel-loader
babel-preset-env babel-plugin-transform-react-jsx babel-register
There are a few new packages that are helping us here.
preact-render-to-string
- This will help us render the App to string so that we can include this in the HTML that we send out to the client.
babel-register
- helps in transpiling ES6 code at runtime on the server.
Webpack π·
Look at the repo to see how the project is structured. client
folder contains the Preact code and the webpack is configured to generate a build from that folder to a file.
module.exports = {
entry: {
app: "./client/index.js"
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js"
},
module: {
rules: [
{
test: /\.js$/,
loader: "babel-loader",
}
]
}
};
Server π
The main file is index.js
here where it requires babel
to be present at runtime and help in transpiling code.
require("babel-register")({
presets: ["env"],
"plugins": [
["transform-react-jsx", { "pragma": "h" }]
],
});
require("./server");
{"pragma": "h"}
is given as an option to the transform-react-jsx babel
plugin because we are dealing with Preact and createElement()
is h()
in it.
Babel can do the magic once you tell this to it. β¨
Now we have server.js
where the rendering logic exists.
const express = require("express");
const { h } = require("preact");
const renderToString = require("preact-render-to-string");
const path = require("path");
const chalk = require("chalk");
const App = require('./client/App');
const app = express();
const port = 8080;
app.use(express.static(path.join(__dirname, "dist")));
app.listen(port);
app.get("*", (req, res) => {
const html = renderToString(<App />);
res.send(`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Preact SSR</title>
</head>
<body>
<div id="app">${html}</div>
<script src="./app.js"></script>
</body>
</html>
`);
});
console.log(chalk.blue(`Server started at <http://localhost>:${port}`));
See how we are generating html
and including it in res.send()
. We include the Webpack output, app.js
, as a script tag. As we have set express.static
as the dist directory, Express will serve that folder as well.
Thatβs it.
π
Run node index.js
to see the magic. π
Take Care!
Top comments (1)
I think it's funny how we're just going in circles: