redux-scaffolder

1.3.10 • Public • Published

Generate three redux files from CLI: "constants.js, actions.js, reducers.js"

npm npm NPM

Support.

Install

npm install -g redux-scaffolder

To generate constants, actions and reducers you can run base (alias b) command. Next CLI will ask you to write your constants.

redux base 

# alias 
redux b

Result example

Note: yours input consts will be transformed to uppercase

Options for base command:

  • -r (--read) to read consts from "constants.js" file
redux base
redux base --read

# alias
redux b
redux b -r

Otherwise you can generate "constants.js" with constants:

redux constants

# alias
redux c

Options for constants command:

  • -p (--path) to specify path/ACTION_TYPE

Then you can generate actions and reducers. Tool will read constants from "constants.js" file.

To create actions.js use actions command:

redux actions

# alias
redux a

To generate reducers.js there is reducer command:

redux reducer REDUCER_NAME

# or without name
redux reducer

# alias
redux r REDUCER_NAME
redux r

Package Sidebar

Install

npm i redux-scaffolder

Weekly Downloads

0

Version

1.3.10

License

MIT

Unpacked Size

12.8 kB

Total Files

12

Last publish

Collaborators

  • shapkarin