How do I create a new React project?
That depends on what your looking for out of the box. No config, config, server-rendered etc… here are a few to consider. Of course you can setup from scratch as well (not covered here).
#install create-react-app if you don't have it
npm install -g create-react-app
#create a new app
create-react-app my-app
cd my-app/
#start the app - have fun!
npm start
Also see these projects
The 4 Easiest Ways To Start A React Project
Where can I find videos for using React Create App?
Can I play around with React Online?