plop-generator-redux v0.1.0
plop-generator-redux
Plop generator for opinionated redux scaffolding. Generates your reducer folders, action creators and reselect.
Configuration
- Install
plopglobally in your system.
npm install -g plop- Install
plopandplop-generator-reduxlocally in your project.
npm install --save-dev plop plop-generator-redux- In your
plopfile.js, require theplop-generator-reduxmodule and pass theplopobject and optionally some configuration.
var path = require('path');
module.exports = (plop) => {
require('plop-generator-redux', {
basePath: path.resolve(__dirname, 'app', 'stores'),
prefix: 'redux'
});
}Configuration object
| Attribute | Default | Description |
|---|---|---|
| basePath | app/redux | Path in which the generator will put files |
| prefix | Adds a prefix to each generator followed by a : |
Usage
Run plop to see the list of generators, or run plop [generator] to use that generator.
Available generators
init: generates the initial folder andindex.jsto import all reducers and combine them.> plop init [CREATE] ./app/redux/index.jsreducer: generates a reducer folder within the initial folder. Optionally generates action creators and selectors file.> plop reducer > Reducer name: my initial reducer [CREATE] ./app/redux/myInitialReducer/reducer.js [CREATE] ./app/redux/myInitialReducer/reducer.spec.js [MODIFY] ./app/redux/index.jsreducer:action: generates an action for a given reducer. Optionally generates action creator.> plop reducer:action > Reducer name: myInitialReducer > Action name: my action > Generate action creator? No [MODIFY] ./app/redux/myInitialReducer/reducer.js [MODIFY] ./app/redux/myInitialReducer/reducer.spec.js> plop reducer:action > Reducer name: myInitialReducer > Action name: my action > Generate action creator? Yes [MODIFY] ./app/redux/myInitialReducer/reducer.js [MODIFY] ./app/redux/myInitialReducer/reducer.spec.js [MODIFY] ./app/redux/myInitialReducer/actions.js [MODIFY] ./app/redux/myInitialReducer/actions.spec.jsactions: generates the action creators file for a given reducer.> plop actions > Reducer name: myInitialReducer [CREATE] ./app/redux/myInitialReducer/actions.js [CREATE] ./app/redux/myInitialReducer/actions.spec.jsactions:action: generates an action within a given reducer folder (it does not add the action to the reducer.js file).> plop actions:action > Reducer name: myInitialReducer > Action name: my action [MODIFY] ./app/redux/myInitialReducer/actions.js [MODIFY] ./app/redux/myInitialReducer/actions.spec.jsselectors: generates selectors file for a given reducer.> plop selectors > Reducer name: myInitialReducer [CREATE] ./app/redux/myInitialReducer/selectors.js [CREATE] ./app/redux/myInitialReducer/selectors.spec.jsselectors:selector: generates a selector within a given reducer folder.> plop selectors:selector > Reducer name: myInitialReducer > Action name: my selector [MODIFY] ./app/redux/myInitialReducer/selectors.js [MODIFY] ./app/redux/myInitialReducer/selectors.spec.js
License
MIT
10 years ago