0.1.1 • Published 9 years ago
generator-redux-starter v0.1.1
Yeoman generator for Redux and React
fork and Modify from banderson/generator-redux, thanks very much
Features include in this Generator:
- Redux functional application architecture
- React-router A complete routing solution for React.js
- Redux-DevTools configured and enabled when in dev mode
- WebPack for build pipeline and dev server awesomeness
- Babel transpiler so you can use bleeding edge language features
- PostCSS preprocessor with autoprefixer support
Prerequisites
You must have Node.js w/NPM installed. I recommend installing via homebrew, but you should be able to use the pre-built installers if you prefer.
Also, generator-redux-starter is a Yeoman generator. If you do not have Yeoman installed, first run:
$ npm install -g yoInstalling the generator
To install generator-redux from npm, run:
$ npm install -g generator-redux-starterFinally, initiate the generator:
$ yo redux-starterConfiguration Options
During install-time, you will be prompted to enter some information to help create the project structure and package.json file:
- Application name (string): A human-readable name for your project, i.e. "My Redux Application"
- Application Description (string): Describe your application in one sentence, to be used in
package.jsonand the generatedREADME.md - Port (number): choose a port to run your development server on (defaults to :3000)
Running your scaffolded project
The generated project includes a hot-reloading static server. To start the server, run:
$ npm startTo run the server with the dev-tools enabled, run:
$ DEBUG=true npm startTo build for production, run:
$ npm run buildLicense
MIT