fork and Modify from banderson/generator-redux, thanks very much
- 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
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 yo
To install generator-redux from npm, run:
$ npm install -g generator-redux-starter
Finally, initiate the generator:
$ yo redux-starter
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.json
and the generatedREADME.md
- Port (number): choose a port to run your development server on (defaults to :3000)
The generated project includes a hot-reloading static server. To start the server, run:
$ npm start
To run the server with the dev-tools enabled, run:
$ DEBUG=true npm start
To build for production, run:
$ npm run build
MIT