Skip to content

Commit 3e08629

Browse files
authored
Update README.md
1 parent f241726 commit 3e08629

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ Split code into bundles so that code is asynchronously loaded by the client.
1717

1818
The Basic setup goes like this...
1919

20-
An express server handles a request, renders the that page on the server and sends
20+
An express server handles a request, renders the page on the server, then sends
2121
it back to the client. The code is bundled into chunks on build time which are requested
2222
by the client when needed for that route.
2323

24-
When in development mode the express server handles a request and uses the `webpack.config.development.js`
25-
configuration as middleware to listen for file changes, build then and push them to the client.
24+
When in development mode, the express server handles a request and uses the `webpack.config.development.js`
25+
configuration as middleware to listen for file changes, build, then and push them to the client.
2626

2727
---
2828

29-
This project is and updated version of [this project](https://github.com/Alex-ray/universal-hmr-ssr-react-redux). With the biggest updates being migrations to **React Router 4** and **Hot Module Reloading 3**
29+
This project is an updated version of [this project](https://github.com/Alex-ray/universal-hmr-ssr-react-redux). With the biggest updates being migrations to **React Router 4** and **Hot Module Reloading 3**
3030

3131
The main goal of this project remains the same; A simple and no BS approach to a
3232
Universal JS, Server Side Rendering, Code Splitting and Hot Module Reloading using
33-
the following technologies.
33+
the following technologies:
3434

3535
- React
3636
- Redux
@@ -44,18 +44,18 @@ the following technologies.
4444
- immutablejs
4545

4646
## 🛠 Setup
47-
First install the dependencies, in the root directory of this project run.
47+
First install the dependencies in the root directory of this project run.
4848
`npm install`
4949

5050
## 🤖 Running
5151
For **Development** run `npm run development`
5252

5353
This will start a development server on `localhost:8080` that utilizes hot module
54-
reloading for both React components and redux reducers.
54+
reloading for both React components and Redux reducers.
5555

5656
For **Production** run `npm run build && npm run production`.
5757

58-
This will build all your assets and write them to a `/build` file in the root directory of this project. The script will then start up a express server on `localhost:8080` that will utilize server side rendering and route based code splitting.
58+
This will build all your assets and write them to a `/build` folder in the root directory of this project. The script will then start an express server on `localhost:8080` that will utilize server side rendering and route based code splitting.
5959

6060
![hmr-ssr](https://cloud.githubusercontent.com/assets/2454928/18360529/39573fe2-75b3-11e6-8a06-75bc2664e98d.gif)
6161

0 commit comments

Comments
 (0)