Skip to content

Commit ce4c3d8

Browse files
committed
Updated README and removed unused requirejs lib from dependencies
1 parent 0e87cbe commit ce4c3d8

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,21 @@ $ http-server dist/
2020
```
2121

2222
Open: `http://localhost:8080`
23+
24+
* All JavaScript files are transpiled with 6to5 library with enabled experimental ES7 (see: https://6to5.org/features.html).
25+
26+
* For using experimental ES7 code in Jest tests, the project is using my fork of `6to5-jest`package (https://github.com/hipertracker/6to5-jest)
27+
28+
* The workflow and communication between components is built using Reflux (https://github.com/spoike/refluxjs), a slighty modified Flux paradigm.
29+
30+
* Unit testing is provided by (recomended by Facebook) `Jest` library (https://facebook.github.io/jest/)
31+
32+
* The example is using Bootstrap 3 React components thanks to `react-bootstrap` (http://react-bootstrap.github.io/).
33+
34+
35+
Todo:
36+
37+
* Add `Semantic-UI` (http://semantic-ui.com/). There is promising `react-semantify` (http://react-components.com/component/react-semantify) but it is not as mature as `react-bootstrap` yet.
38+
* Add `Yeoman` project with options to choose SASS/Less/Stylus and Bootstrap/Semantic-UI
39+
* Add more unit tests showing `Jest` testing ES5/ES7 code.
40+

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-es7",
3-
"version": "0.0.1",
4-
"description": "Example of simple ReactJS using Reflux and ES6 (+ experimental ES7) features",
3+
"version": "0.0.2",
4+
"description": "Example of using React + Reflux + ES6 with experimental ES7 syntax + Jest.",
55
"main": "src/index.js",
66
"scripts": {
77
"test": "jest",
@@ -49,7 +49,6 @@
4949
"react": "*",
5050
"react-bootstrap": "^0.13.0",
5151
"reflux": "*",
52-
"requirejs": "^2.1.15",
5352
"rimraf": "^2.2.8"
5453
}
5554
}

0 commit comments

Comments
 (0)