A react component generator
First, install Yeoman and generator-rockets-react-component using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-rockets-react-component
To generate a new component in your current directiory, run:
yo rockets-react-component
You will be prompted to specify some information about your new component:
- Component Name: string
- Connect to Redux: Y/n
A basic component with have the following directory structure:
└───NewComponent/
├───NewComponentContainer.js
├───NewComponentView.js
└───index.js
A component with redux enabled:
└───NewComponent/
├───NewComponentContainer.js
├───NewComponentView.js
├───actions.js
├───actionTypes.js
├───reducer.js
└───index.js
MIT © Fergus Farrell