Buzzwords: #reactjs #immutablejs #webpack #jest #selenium #hot-module-replacement #es6 #babeljs #authentication #postcss #eslint #flexbox
- React - A Javascript Library For Building User Interfaces
- React-Router - A complete routing library for React.
- ImmutableJS - Immutable collections for JavaScript
- Webpack - Module Bundler
- Jest - Painless Javascript Unit Testing
- Nightwatch - is an easy to use Node.js based End-to-End (E2E) testing solution for browser based apps and websites.
- PostCSS - is a tool for transforming CSS with JS plugins
- Babel - Babel will turn your ES6+ code into ES5 friendly code, so you can start using it right now without waiting for browser support
- ESLint - The pluggable linting utility for JavaScript and JSX
- Flexbox - Flexbox is a layout mode providing for the arrangement of elements on a page such that the elements behave predictably
The development server is setup using Webpack
> npm start
https://localhost:8080/
webpack result is served from /js/
content is served from .../react-webpack-example/src
404s will fallback to /index.html
Hash: 6304c41877c95731fb5f
Version: webpack 1.8.9
Time: 4620ms
Asset Size Chunks Chunk Names
main.js 1.38 MB 0 [emitted] main
main.js.map 1.51 MB 0 [emitted] main
chunk {0} main.js, main.js.map (main) 1.21 MB [rendered]
...
webpack: bundle is now VALID.
Unit tests are run using Jest.
> npm test
...
Found 3 matching tests...
PASS __tests__/components/Breadcrumb-test.js (2.396s)
PASS __tests__/components/NavBar-test.js (2.473s)
PASS __tests__/components/LinkTo-test.js (3.064s)
3 tests passed (3 total)
Run time: 5.97s
Browser tests are run with Nightwatch
> npm run browser
...
Starting selenium server in parallel mode... started - PID: 11996
Started child process for env: firefox
Started child process for env: chrome
firefox Test Test Suite
firefox ===============
...
firefox
firefox OK. 3 assertions passed. (542 ms)
firefox
firefox OK. 7 total assertions passed. (4429 ms)
chrome Test Test Suite
chrome ===============
...
chrome
chrome OK. 3 assertions passed. (1108 ms)
chrome
chrome OK. 7 total assertions passed. (4790 ms)
Webpack bundles all the assets in production mode and Gulp creates unique file names for caching
NODE_ENV=production npm run build
...
Hash: a347df5e60d93385aa06
Version: webpack 1.8.9
Time: 8028ms
Asset Size Chunks Chunk Names
main.a347df5e60d93385aa06.min.js 254 kB 0 [emitted] main
style.a347df5e60d93385aa06.min.css 629 bytes 0 [emitted] main
main.a347df5e60d93385aa06.min.js.map 2.44 MB 0 [emitted] main
style.a347df5e60d93385aa06.min.css.map 111 bytes 0 [emitted] main
main.a347df5e60d93385aa06.min.js.gz 68.2 kB [emitted]
+ 268 hidden modules
Child extract-text-webpack-plugin:
+ 2 hidden modules
Child extract-text-webpack-plugin:
+ 2 hidden modules
> cd dist
> python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000
...
> open http://localhost:8000/