27 lines
No EOL
717 B
Markdown
27 lines
No EOL
717 B
Markdown
# Notes sur [ReactJS Fundamentals]
|
|
|
|
[ReactJS Fundamentals]: http://courses.reactjsprogram.com/courses/reactjsfundamentals
|
|
|
|
## Setting up
|
|
|
|
* react + react-dom : actual React packages
|
|
* html-webpack-plugin: copy html to output
|
|
* webpack + webpack-dev-server: webpack
|
|
* babel-{core,loader}: babel core + plugin for webpack
|
|
* babel-preset-react: JSX transpiler
|
|
|
|
|
|
npm install --save \
|
|
react \
|
|
react-dom && \
|
|
npm install --save-dev \
|
|
html-webpack-plugin \
|
|
webpack \
|
|
webpack-dev-server \
|
|
babel-{core,loader} \
|
|
babel-preset-react
|
|
|
|
|
|
## Next up
|
|
|
|
https://github.com/ReactjsProgram/react-fundamentals-curriculum |