Skip to content

Commit d3e9c76

Browse files
committed
update README
1 parent 416ea84 commit d3e9c76

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

README.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ This starter also embeds `JWT token based` `authentication` (check [Route](https
1717
## Detailed Content
1818

1919
**Front:**
20-
- React JS (15.x - [github :link:](https://github.com/facebook/react))
20+
- React JS (15.6.x - [github :link:](https://github.com/facebook/react))
2121
- Redux (*as you application grows managing state will be a serious concern, save pain with Redux*)
22-
- apollo-client (*futur of API. Learn about this beast [here in officiel website](http://dev.apollodata.com/)*)
23-
- React-Redux (*Redux is not specific to ReactJS, you could easily use it with Angular2 for instance*)
24-
- Redux-devtools (*want to time travel your application State?*)
22+
- apollo-client 1.9.x (*futur of API. Learn about this beast [here in officiel website](http://dev.apollodata.com/)*)
23+
- React-Redux 3.7.x (*Redux is not specific to ReactJS, you could easily use it with Angular2 for instance*)
2524
- React-Router-Redux (*previously named react-simple-router*)
26-
- react-router (2.x- [github :link:](https://github.com/reactjs/react-router))
25+
- react-router (4.x- [github :link:](https://github.com/reactjs/react-router))
2726
- Bootstrap (3.x - [github :link:](https://github.com/twbs/bootstrap))
2827
- React-Bootstrap ([github :link:](https://github.com/react-bootstrap/react-bootstrap))
2928
- font-awesome ([github :link:](https://github.com/FortAwesome/Font-Awesome))
3029
- animate.css ([github :link:](https://github.com/daneden/animate.css))
3130
- classnames ([github :link:](https://github.com/JedWatson/classnames))
3231
- react-motion ([github :link:](https://github.com/chenglou/react-motion))
33-
- Webpack ([github :link:](https://github.com/webpack/webpack))
32+
- Webpack 3.x ([github :link:](https://github.com/webpack/webpack))
33+
- postcss
3434
- babel 6+ ([github :link:](https://github.com/babel/babel))
35-
- react-addons-shallow-compare (*pure render mixin equivalent for ES6*)
35+
- redux-devtool-extension ([github :link:](https://github.com/zalmoxisus/redux-devtools-extension#redux-devtools-extension))
3636

3737
**Tool chain:**
3838
- babel 6+
@@ -58,11 +58,13 @@ This starter also embeds `JWT token based` `authentication` (check [Route](https
5858

5959
### Prerequisite
6060

61-
#### Node JS version required is `>=6.5.0+`.
62-
*Node JS 4.x will enter maintenance phase in April 2017 so you better upgrade now or soon to new LTS which is v6.x.*
61+
#### Node JS version required is `>=6.x`.
62+
*Build with node js v8.x but should be ok with node js 6.x.*
6363

6464
> Better use [nvm](https://github.com/creationix/nvm) to manage your Node JS versions.
6565
66+
### server
67+
6668
An Easy and fast way to get your graphql backend is to **register for free at [Scaphold](https://scaphold.io)**.
6769

6870
> This starter has been created with a scaphold free plan.
@@ -139,6 +141,16 @@ npm run test
139141
npm run prod
140142
```
141143

144+
### run dev bundle
145+
```bash
146+
npm run start-spa-dev
147+
```
148+
149+
### run prod bundle
150+
```bash
151+
npm run start-spa-prod
152+
```
153+
142154

143155
## License
144156

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-redux-graphql-apollo-bootstrap-webpack-starter",
33
"version": "1.0.0",
4-
"description": "react js + redux + graphQL + Apollo + react router + hot reload + devTools + bootstrap + webpack starter",
4+
"description": "react js + redux + graphQL + Apollo + react router4 + hot reload + devTools + bootstrap + webpack 3 starter",
55
"main": "src/index.js",
66
"scripts": {
77
"flow": "flow",
@@ -15,7 +15,7 @@
1515
"serve-spa-prod": "npm run prod && cross-env NODE_ENV=production node ./src/server/SPA/index.js"
1616
},
1717
"engines": {
18-
"node": "^6.11.1",
18+
"node": ">=6.11.1",
1919
"npm": "^5.3.0",
2020
"yarn": "^0.27.5"
2121
},

0 commit comments

Comments
 (0)