Learning ReactJS
  • HTML 50.8%
  • JavaScript 49.2%
Find a file
2015-12-25 17:08:57 +01:00
.eslintrc.js First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00
.gitignore First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00
index.html First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00
LICENSE initial commit 2015-12-25 16:47:23 +01:00
main.js First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00
package.json First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00
README.md Added running instructions. 2015-12-25 17:08:57 +01:00
webpack.config.js First version from https://facebook.github.io/react/docs/getting-started.html 2015-12-25 16:54:31 +01:00

react-intro : Learning ReactJS

Installing

  • adjust the webpack-dev-server 2 URLs used in index.html : vm:8090 assumes we want that server to run on a host called vm, but most users will want localhost instead
  • adjust the dev script in package.json to match those URLs
  • npm install
  • npm run start
  • browse to http://vm:8080/index.html assuming you didn't change the serve URL in package.json.

Parts taken from: