I prepare an environment with the last version of nodejs.
In /home/m/opensource/react-hello-world/nodepath.bash
#!/bin/bash
PATH="/home/m/node-v6.2.1-linux-x64/bin:$PATH"I check nodejs environment.
$ . ./nodepath.bash
$ node --version
v6.2.1Then I install create-react-app in this environment.
$ . ./nodepath.bash
$ npm install -g create-react-appThis creates /home/m/node-v6.2.1-linux-x64/bin/create-react-app.
$ create-react-app hello-worldThis creates /home/m/opensource/react-hello-world/hello-world.
Let's run the development server:
$ cd hello-world
$ npm startThe application is running at: http://localhost:3000/.