The code from Tyler McGinnis' ReactJS Fundamentals course.
  • JavaScript 97.4%
  • HTML 1.5%
  • CSS 1.1%
Find a file
2016-04-04 22:32:41 +02:00
app Final version. 2016-04-04 22:32:41 +02:00
public Containers, presentational, stateless functional components, propTypes. 2016-04-03 15:13:55 +02:00
.babelrc First React component: webpack and babel setup. 2016-03-28 18:39:09 +02:00
.gitignore Final version. 2016-04-04 22:32:41 +02:00
package.json Final version. 2016-04-04 22:32:41 +02:00
README.md Final version. 2016-04-04 22:32:41 +02:00
webpack.config.js Final version. 2016-04-04 22:32:41 +02:00

Notes sur ReactJS Fundamentals

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