reactjs quick project setup with local server
I have been going around searching for some cli to setup and start development on react app, which can be time consuming. It is not as complete as angular but hey reactjs is really fast. You can just get started with this project here. It support ES6 (via Babel) not typescript.
Remember to get your project started, quickly clone
https://github.com/facebook/create-react-app
Run npm install (please make sure you have latest npm install
npm install npm@latest -g (basically gives you npx which is required)
To start the local server, run 'npm start'
That's it! Reactjs ready to worked on.
Comments