November 2
React.js tutorial
You should always use latest stable version of node and npm
# npx is a package runner tool that comes with npm5.2+.
npx create-react-app my-app
cd my-app
npm start
Tip: install React Developer Tools for chrome. It is a helpful tool for debugging during development.
...