Render HTML/CSS server-side using TypeStyle

Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

Here we show how to return CSS + HTML as a server response. And then rehydrate it on the client. Server side rendering is great for SEO and first load performance.

TypeStyle supports server side rendering CSS out of the box.

[00:01] We have a simple app.tsx file. We will bring in React, the style function from TypeStyle. Then we create a CSS class name using TypeStyle's style function, setting up the color to be red, and font size of 30 pixels as a demonstration.

[00:23] We will also go ahead and create an app component for React. We will simply return a div with the class name pointing to this TypeStyle-generated class. Within the div, we'll simply log out the text, "Hello World."

[00:44] Let's create a simple server to pre-render this component and its CSS, and return it as an HTTP response. I'll go ahead and install Express and the type definitions for Express. I'll save these to our dependencies.

[00:59] Once the installation is complete, we will go ahead and create a server file as server.tsx. We will bring in React and ReactDOMServer for pre-rendering HTML server-side. You will also bring in the getStyles function from TypeStyle for pre-rendering the CSS.

[01:19] We will bring in the app component, which is the component we want to render server-side. We will bring in express, which will be used to power our HTTP server. We will go ahead and create a utility render page function, which will take some HTML and some CSS, and return a rendered index.html content as a string.

[01:45] Our main HTML page contains HTML with the head tag containing the style tag with an ID styles target, which will contain all our server-side rendered CSS. After the head, it has a body tag with a root div of ID root, which contains all our server-rendered HTML.

[02:11] Finally, our index page loads a client-side script, bundle.js, which will rehydrate the style target and the root div. We will create our HTTP server using Express. We will add a root handler to return our index page. Within our root handler, we will pre-render the HTML using ReactDOMServer.renderToString, passing in our app component.

[02:42] We will get all the server-collected styles using TypeStyle's getStyles function. Finally, we will send the response by rendering into the page this HTML and the CSS. To serve our client bundle.js file, we will simply serve up the public folder using express.static.

[03:03] Finally, our application will listen on port 3000, and once it starts, it will log out the message, "App listening on port 3000." The bundle.js file in our index page is being generated using webpack. Webpack is configured using the webpack.config.js file. The output section of our config is writing bundle.js to the public folder.

[03:31] Our application entry point in the config points to source at main.tsx file. Let's go ahead and create this main.tsx file, which will be our client-side entry point. We will bring in React and ReactDOM for hydrating the HTML. We will bring in TypeStyle for hydrating the CSS. We will also bring in the root app component, which is what we want to hydrate.

[03:55] We will use ReactDOM to render the app component to the document root div. To hydrate the CSS, we will set TypeStyle's styles target to the style tag in the document head. To demonstrate this project, we have a style target in our baggage.json that runs webpack to generate our bundle.js, and then starts the server by running our server.tsx.

[04:22] We jump back to the terminal and run npm start. This kicks off webpack, which will generate our public bundle.js file. Then the Express server starts listening for requests on port 3000. If we open up our browser on localhost:3000, you can see that the application works as expected.

[04:45] If you look at the network tab in our development tools, the HTML and CSS was pre-rendered on the server and sent as a part of the original response. It was then rehydrated by bundle.js on the client. Now the DOM contains the rehydrated style and the root div.

[05:05] To recap, we created our styles and React components, rendered them on the server and sent them down as a part of the response, then finally rehydrated them on the client.

egghead
egghead
~ 15 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today