1.0.3 • Published 9 years ago
react-dev-init v1.0.3
react-dev-init
A very simple module that help you bring up a React project quickly. It will save you a little time creating and configuring a new React project.
Include
- react and react-dom
 - babel and some of it's plugins and presets (for transpiling ES6 and JSX element)
 - webpack
 - webpack-dev-server (for live reloading)
 
Installation
npm install -g react-dev-initUsage
Start a new project with npm normally...
npm init... and run this command at the project root directory.
react-dev-initAfter that, use this command to install all depedencies...
npm run install...and start the project with
npm run devThen navigate to http://localhost:8080. If you see, "Yay! We're good to go now", then everything's good. You can start develop your features now.