react-flux-starter-kit-windows
v1.0.0
Published
Includes BrowserSync Browserify React Flux Bootstrap Bootstrap-react jquery jquery-ui webpack custom-cli
Downloads
3
Maintainers
Readme
React Flux Starter Kit
If you are like me, a starter kit should have a folder structure imposed, common UI Libraries, generators, and a dependable server all out of the box. This kit attempts to do that.
Built In Services
##Installation
- npm install -g react-flux-starter-kit this will install a command called mtn
- Navigate to a directory where you would like a new project to reside and run
mtn dew project [project_name] (projects folder name)
- Once it is complete run :
npm install -g webpack
npm install
- Then start the server with:
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