Skip to content

dwjohnston/tinymassive-demo

Repository files navigation

React SSR Template

This project provides a template for React 16 (Fiber) using server side rendering.

Important: The master branch is only supposed to contain the bare-bone template. There are different branches containing more advanced features, like streaming and more to come in the future. Those are documented in the Branches section.

The template has been renamed to template-react-ssr since it will upgrade to newer versions of React, as soon as they are stable.

Table of contents

Features

  • Universal rendering using ExpressJS and EJS
  • Hot reloading of styles and scripts
  • ESNext ready
  • powered by webpack

Branches

The following, more advanced, features are pushed to dedicated branches. Either checkout a specific branch or fork the repository and merge the branches to get the features you need. You might as well just use them as a resource to learn, how the specific technologies are implemented.

Streaming (feature/streaming)

Since React 16, we have the possibility to render to a node stream. This improves the time to first byte (TTBF), since the browser can display the app in an iterative manner. The dedicated branch provides the basic streaming implementation.

React-Router Integration (feature/react-router)

For a template using react-router you can make use of this branch. It features routing on client and server side as well as basic routes.

Thanks to @crabbits for contributing this example.

Express Routing / API (feature/express-routing)

This example shows how to configure routing ExpressJS. This can be used to create an API to work alongside your frontend application.

Redux (feature/redux)

This example shows how to integrate redux along with server-side rendering as well as hot-reloading. It features a simple store with preloaded state from the server as well as state hydration on the client.

Material-UI (feature/material-ui)

This example includes the Material-UI design library.

Development

To start development, follow these steps:

$ git clone https://github.com/rherwig/template-react-16-ssr.git
$ cd template-react-16-ssr
$ npm i
$ npm start

This fires up the development server on port 3000.

You can now choose to either start developing your react application or to enhance the express server according to your needs.

The react app's entry point is src/shared/App.js and the express server is started from src/index.js.

For more information on how the specific parts of the application work, please refer to the documentation in the code.

Testing

The general testing engine used by this project consists of jest and react-test-renderer. You can run the tests by using the following command:

$ npm test

Linting

To run eslint, execute the following command:

$ npm run lint

Please note: Linting is only available via this command and not integrated via webpack. This is done on purpose, as eslint is somewhat biased on the preference of the creator of the config.

Building for Production

In order to build for production and run the finished project, execute the following:

$ npm run build
$ node public/index

This bundles and optimizes your app and runs it from the public/ directory.

Changelog

The following changes have been implemented in the course of developing the template.

3.0.0

  • Switched from EJS for templating to basic HTML using template string interpolation. This change allows for much more flexibility, i.e. with react-helmet and dynamically requiring content, such as styles.
  • Introduces PostCSS to enable autoprefixer, since support of older browser (looking at you IE) is still important.
  • Implement eslint and basic configuration.
  • Implements basic test engine using jest.
  • Improves production build by executing steps in parallel.

2.5.0

  • Switched to babel 7
  • Switched to nodemon for watch mode

2.4.0

2.3.0

  • Implements server-side compression via shrink-ray
    • Compression is only enabled in production mode
    • Thanks to @zackljackson for the hint on shrink-ray
  • Implements helmet for security-relevant response headers

2.2.0

Thanks to @arkhamRejek for contributing the code-splitting feature as well as the babel-preset changes!

2.1.0

  • Implements react-helmet to provide improved handling for document meta information

2.0.1

  • Extends .editorconfig
  • Adds .prettierrc to enable formatting via prettier

2.0.0

  • Upgraded to webpack 4
  • Upgraded to React 16.3
  • Removed extract-css-chunks plugin in favor of extract-text-webpack-plugin, since the former is not supported with webpack 4 anymore
  • Removes extract plugins for styles in development, to improve hot-reloading

Planned features

The following features are planned for future upgrades of the template. If there are any request, feel free to open an issue or a pull request.

  • Provide service worker template branch
  • Provide fully features PWA example in a separate repository
  • Extend this list ;-)

License

MIT

Contributing

If there are any ideas or optimizations to improve this template, feel free to submit a pull request including your documented changes.

About

My submission for the Tiny Massive light show.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published