UNPKG

14.3 kBMarkdownView Raw
1<p align='center'>
2 <h1 align='center'>React, Universally</h1>
3 <p align='center'><img width='150' src='https://raw.githubusercontent.com/ctrlplusb/assets/master/logos/react-universally.png' /></p>
4 <p align='center'>A starter kit giving you the minimum requirements for a production ready universal react application.</p>
5</p>
6
7## TOC
8
9 - [About](https://github.com/ctrlplusb/react-universally#about)
10 - [Features](https://github.com/ctrlplusb/react-universally#features)
11 - [Overview](https://github.com/ctrlplusb/react-universally#overview)
12 - [Extensions and Alternatives](https://github.com/ctrlplusb/react-universally#extensions-and-alternatives)
13 - [Project Structure](https://github.com/ctrlplusb/react-universally#project-structure)
14 - [Project Dependencies](https://github.com/ctrlplusb/react-universally#project-dependencies)
15 - [Server Runtime Dependencies](https://github.com/ctrlplusb/react-universally#server-runtime-dependencies)
16 - [Deploy your very own Server Side Rendering React App in 5 easy steps](https://github.com/ctrlplusb/react-universally#deploy-your-very-own-server-side-rendering-react-app-in-5-easy-steps)
17 - [npm script commands](https://github.com/ctrlplusb/react-universally#npm-script-commands)
18 - [References](https://github.com/ctrlplusb/react-universally#references)
19
20## About
21
22This starter kit contains all the build tooling and configuration you need to kick off your next universal react project, whilst containing a minimal "project" set up allowing you to make your own architecture decisions (redux/mobx etc).
23
24## Features
25
26 - 🌍 Server side rendering.
27 - 🔥 Extreme live development - hot reloading of client/server source as, with high level of error tolerance.
28 - 🚄 `express` server.
29 - 👮 Security on the `express` server using `helmet` and `hpp`.
30 - 👀 `react` as the view.
31 - 🔀 `react-router` as the router, along with a dynamic routing configuration (i.e. you get code splitting based on your routes).
32 - `react-helmet` allowing control of the page title/meta/styles/scripts from within your components. Direct control for your SEO needs.
33 - 🖌 Very basic CSS support - it's up to you to extend it into CSS Modules, SASS, PostCSS, Aphrodite etc.
34 - 🏜 Image and Font support.
35 - 🚀 Full ES2017+ support, using `babel` to transpile where needed.
36 - 📦 Bundling of both client and server using `webpack` v2.
37 - ✂️ Client bundle is split by routes.
38 - 🐘 Long term caching of the client bundle.
39 - 🍃 Tree-shaking, supported by `webpack`.
40 - ✔️ Type checking via Flow, a beautiful and unobtrusive type framework. NOTE: Flow is a completely optional feature. The flow type annotations get ripped out of the source by the webpack build step. You have no obligation to use flow within your code and can even uninstall the dependency (flow-bin) without breaking the project. I do highly recommend you try it out though.
41 - 🎛 A development and optimized production configuration.
42 - 🔧 Easy environment configuration via `dotenv` files.
43 - 👼 Airbnb's eslint configuration.
44
45## Overview
46
47Redux/MobX, data persistence, test frameworks, and all the other bells and whistles have been explicitly excluded from this boilerplate. It's up to you to decide what technologies you would like to add to your own implementation based upon your own needs, this boilerplate simply serves as a clean base upon which to do so.
48
49This boilerplate uses Webpack 2 to produce bundles for both the client, the
50server, and the middleware that the server will use to support SSR rendering of the React application. You will notice the following Webpack configuration files:
51
52 - `tools/webpack/client.config.js`
53 - `tools/webpack/server.config.js`
54 - `tools/webpack/universalMiddleware.config.js`
55
56All of these call into the `tools/webpack/configFactory.js` in order to generate their respective webpack configurations. I've tried to keep the webpack configuration as centralized as possible to allow easier reuse of the configuration and allow you to not have to do constant file jumping whilst trying to analyse the configuration for a target bundle. I've also included a fair amount of comments as I know webpack can be a bit daunting at first.
57
58Using webpack and babel across all of our source allows us to use the same level of javascript (e.g. es2015/2016/2017) without having to worry about what each target environment supports. In addition to this it allows our client/server code to both support the additional file types that a typical React application may import (e.g. CSS/Images).
59
60Given that we are bundling our server code I have included the `source-map-support` module to ensure that we still get nice stack traces when executing our code.
61
62The application configuration is supported by the `dotenv` module and it requires you to create a `.env` file in the project root (you can use the `.env_example` as a base). The `.env` file has been explicitly ignored from git as it will typically contain environment sensitive/specific information. In the usual case your continuous deployment tool of choice should configure the specific `.env` file that is needed for a target environment.
63
64## Extensions and Alternatives
65
66### [`react-universally-skinny`](https://github.com/ctrlplusb/react-universally-skinny)
67
68When size matters. A lightweight alternative to `react-universally`. ___Provides over 48% gzip bundle output savings from 72kb to 37kb___!
69
70### [`advanced-boilerplate`](https://github.com/sebastian-software/advanced-boilerplate)
71
72This boilerplate provides extended features on top of `react-universally` such as CSS Support with CSS modules alongside a flexible full PostCSS chain for advanced transformations e.g. autoprefixer.
73
74## Project Structure
75
76```
77/
78|- build // The target output dir for our build commands.
79| |- client // The built client module.
80| |- server // The built server module
81|
82|- src // All the source code
83| |- server // The server bundle entry and specific source
84| |- universalMiddleware // the universal middleware bundle entry and specific source
85| |- client // The client bundle entry and specific source
86| |- shared // The shared code between the bundles
87| |- universal // Shared code that is suitable for any of the bundles
88| |- node // Shared code that is suitable for the node bundles
89| (i.e. the server or universalMiddleware bundles)
90|- tools
91| |- development // Tool for hot reloading development
92| |
93| |- webpack
94| |- client.config.js // Client webpack configuration
95| |- server.config.js // Server webpack configuration
96| |- universalMiddleware.config.js // Universal middleware webpack configuration
97| |- configFactory.js // Webpack configuration builder
98|
99|- .env_example // An example from which to create your own .env file.
100```
101
102I highly recommend putting most of your application code into the `shared` folders where possible. Then put anything that is specific to the `server`/`client`/`universalMiddleware` within their respective folder.
103
104## Project Dependencies
105
106The dependencies within `package.json` are structured so that the libraries required to transpile/bundle the source are contained within the `devDependencies` section, whilst the libraries required during the server runtime are contained within the `dependencies` section.
107
108If you do building on your production environment you must ensure that you have allowed the installation of the `devDependencies` too (Heroku, for example doesn't do this by default).
109
110## Server Runtime Dependencies
111
112Even though we are using webpack to support our universal application we keep the webpack runtime out of our production runtime environment. Everything is prebundled in prep for production execution. Therefore we only have the following runtime dependencies:
113
114 - `node` v6
115 - `app-root-path` - Gives us the ability to easily resolve files from the root of our app.
116 - `compression` - Gzip compression support for express server responses.
117 - `express` - Web server.
118 - `helmet` - Provides a content security policy for express.
119 - `hpp` - Express middleware to protect against HTTP Parameter Pollution attacks.
120 - `react` - A declarative, efficient, and flexible JavaScript library for building user interfaces.
121 - `react-dom` - React support for the DOM.
122 - `react-helmet` - Control the page header from your components.
123 - `react-router` - A complete routing library for React.
124 - `serialize-javascript` - Allows us to serialize our js in a format safe for embedding in webpages.
125 - `source-map-support` - Adds source map support to node.js (for stack traces).
126
127## Deploy your very own Server Side Rendering React App in 5 easy steps ##
128
129__Step 1: Clone the repository.__
130
131 git clone https://github.com/ctrlplusb/react-universally
132
133__Step 2: `cd` into the cloned directory__
134
135 cd react-universally
136
137__Step 3: Set up your env configuration file__
138
139The application depends on environment settings which are exposed to the application via a `.env` file. You will have to create one of these using the example version (`.env_example`). You could simply copy the example:
140
141 cp .env_example .env
142
143I would recommend that you review the options within the `.env` file.
144
145__Step 4: Install the awesome "now" CLI__
146
147 npm install -g now
148
149These guys are amazing hosts. [Check them out.](https://zeit.co/now#)
150
151__Step 5: Deploy to "now"__
152
153 cp .env .envnow && now && rm -r .envnow
154
155The above command will create a temporary file to expose your `.env` file to the `now` host. It will then deploy to `now` and subsequently delete the temp env file.
156
157That's it. Your clipboard will contain the address of the deployed app. Open your browser, paste, go.
158
159## npm script commands##
160
161### `npm run development`
162
163Starts a development server for both the client and server bundles. We use `react-hot-loader` v3 to power the hot reloading of the client bundle, whilst a filesystem watch is implemented to reload the server bundle when any changes have occurred.
164
165### `npm run build`
166
167Builds the client and server bundles, with the output being production optimized.
168
169### `npm run start`
170
171Executes the server. It expects you to have already built the bundles either via the `npm run build` command or manually.
172
173### `npm run clean`
174
175Deletes any build output that would have originated from the other commands.
176
177### `npm run lint`
178
179Executes `esling` (using the Airbnb config) against the src folder. Alternatively you could look to install the `eslint-loader` and integrate it into the `webpack` bundle process.
180
181### `npm run typecheck`
182
183Executes `flow-bin`, performing type checking on the source. If you really like flow I would recommend getting a plugin for your IDE. For Atom I recommend `flow-ide`.
184
185## Troubleshooting ##
186
187___Q:___ __My project fails to build and execute when I deploy it to my host__
188
189The likely issue in this case, is that your hosting provider doesn't install the `devDependencies` by default. The dependencies within `package.json` are structured so that the libraries required to transpile/bundle the source are contained within the `devDependencies` section, whilst the libraries required during the server runtime are contained within the `dependencies` section.
190You two options to fix this:
191
192 1. Prebuild your project and then deploy it along with the build output.
193 2. Change your host configuration so that it will install the `devDependencies` too. In the case of Heroku for example see [here](https://devcenter.heroku.com/articles/nodejs-support#devdependencies).
194
195___Q:___ __My server bundle fails to execute after installing a new library.__
196
197This may occur if the library you added contains a file format that depends on one of your webpack loaders to process it (e.g. `react-toolbox` contains sass/css). For these cases you need to ensure that you add the file types to the whitelist of the `externals` section in the `webpackConfigFactory`. For example:
198
199```
200// Anything listed in externals will not be included in our bundle.
201externals: removeEmpty([
202 // We don't want our node_modules to be bundled with our server package,
203 // prefering them to be resolved via native node module system. Therefore
204 // we use the `webpack-node-externals` library to help us generate an
205 // externals config that will ignore all node_modules.
206 ifServer(nodeExternals({
207 // NOTE: !!!
208 // However the node_modules may contain files that will rely on our
209 // webpack loaders in order to be used/resolved, for example CSS or
210 // SASS. For these cases please make sure that the file extensions
211 // are added to the below list. We have added the most common formats.
212 whitelist: [
213 /\.(eot|woff|woff2|ttf|otf)$/,
214 /\.(svg|png|jpg|jpeg|gif)$/,
215 /\.(mp4|mp3|ogg|swf|webp)$/,
216 /\.(css|scss|sass|sss|less)$/,
217 ],
218 })),
219]),
220```
221
222As you can see above we have already added the most common formats, so you are unlikely to hit this issue, however, it is good to be aware of.
223
224___Q:___ __I see `react-router` warnings during hot reloading.__
225
226For example:
227
228```
229Warning: [react-router] You cannot change <Router history>;
230Warning: [react-router] You cannot change <Router routes>;
231```
232
233Fret not! This is a known issue when using React Hot Loader 3 alongside React Router. It is being looked in to. Everything still works, unfortunately you just get a few warnings alongside your changes. They are harmless though, promise. :)
234
235__Q:__ __I get checksum warning errors after receiving content from a server rendered request__
236
237I have experienced some cases of this myself. The below stackoverflow post talks about a strange case where you are required to surround the server rendered content with an additional `div`. At the moment this boilerplate doesn't seem to require it, but I have extended versions of this boilerplate where all of a sudden I had to do this. It is worth knowing about.
238
239[Here is the post.](http://stackoverflow.com/questions/33521047/warning-react-attempted-to-reuse-markup-in-a-container-but-the-checksum-was-inv)
240
241## References ##
242
243 - __Webpack 2__ - https://gist.github.com/sokra/27b24881210b56bbaff7
244 - __React Hot Loader v3__ - https://github.com/gaearon/react-hot-boilerplate/pull/61
245 - __dotenv__ - https://github.com/bkeepers/dotenv