0.1.0 • Published 4 years ago

generator-rockets-react-component v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

generator-rockets-react-component NPM version Build Status Dependency Status

A react component generator

Installation

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

Generating Components

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

License

MIT © Fergus Farrell