create-react-app - Create ReactJs Application Tutorial
I have been trying to learn ReactJs and create some sample applications with it. Today found create-react-app (https://github.com/facebookincubator/create-react-app) which will help us to generate sample reactjs application without knowing the reactjs. Only thing we need to do are,
1. Install latest nodejs version.
2. Install create-react-app
npm install -g create-react-app
create-react-app myApp
4. Run the application
cd myApp
npm start
The application will be started at http://localhost:3000.