reduxator
v0.0.3
Published
This module is created to simplify development of redux application with webpack
Maintainers
Readme
Info
This is still in its early stages and can therefor not guarentee anything yet. I have created this package to simplify development of redux application as I found myself creating the same files over and over again.
Installation
first you need to download the npm package as a global module
npm install reduxator -gThen in your project directory
reduxator initThis will initialize the default file structure.
├── src/
│ ├── js
│ │ ├── component
│ │ │ ├── index.js
│ │ ├── component
│ │ │ ├── index.js
│ │ ├── redux
│ │ │ ├── configureStore.js
│ │ │ ├── reducer.jsUsage
To create a new component you just run
reduxator add newComponentNameThis will add a folder to the component directory with the following structure
├── todo
│ ├── index.js
│ ├── action.js
│ ├── actionType.js
│ ├── constant.js
│ ├── reducer
│ │ ├── index
│ ├── jsx