Includes BrowserSync Browserify React Flux Bootstrap Bootstrap-react jquery jquery-ui webpack custom-cli
npm install react-flux-starter-kit##Installation
1. npm install -g react-flux-starter-kit
this will install a command called mtn
2. Navigate to a directory where you would like a new project to reside and run
``bash`
mtn dew project [project_name] (projects folder name)`
3. Once it is complete run :bash`
npm install -g webpack
npm install`
4. Then start the server with:bash`
mtn s`File Structure
``
├── app
│ ├── actions
│ ├── components
│ │ └── app.js
│ ├── constants
│ ├── dispatchers
│ ├── stores
│ ├── main.js
│ └── router.js
├── public
│ ├── assets
│ │ └── images
│ │ └── mtn.png (used on starter page)
│ ├── js
│ │ └── main.js
│ ├── vendor
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ └── jquery-ui.css
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── imports.js
│ │ ├── jquery-ui.min.js
│ │ ├── jquery.min.js
│ │ ├── radium.min.js
│ │ ├── react-bootstrap.min.js
│ │ ├── react.js
│ │ └── react.min.js
│ └── index.html
├── package.json
└── webpack.config.js