DEV Community

Aravind Balla
Aravind Balla

Posted on • Originally published at Medium on

(P)reacting on the server side?

Photo by Marco Lastella on Unsplash

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
Enter fullscreen mode Exit fullscreen mode

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",
      }
    ]
  }
};
Enter fullscreen mode Exit fullscreen mode

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");
Enter fullscreen mode Exit fullscreen mode

{"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}`));
Enter fullscreen mode Exit fullscreen mode

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)

Collapse
 
math2001 profile image
Mathieu PATUREL

I think it's funny how we're just going in circles:

  1. Share static document. Yay!
  2. Tweak the html on the server! PHP (between others) let's go!
  3. Hey, let's build API and use the client to generate HTML. JS let's go!
  4. Hum... Maybe it wasn't so bad before. Let's give it a new name: server side rendering let's go!