cra-redux-boilerplate
v1.1.0
Published
Personalized post cra boilerplate for redux
Downloads
1
Maintainers
Readme
cra-redux-boilerplate
Author: Brandon Cooke
This is a personalized boilerplate script run via npm bin folder. It is run after running create-react-app
.
Installation
In order to use, perform the following:
npm i --save cra-redux-boilerplate redux react-redux redux-thunk
and after run the following
Mac/Linux
./node_modules/.bin/cra-redux
Windows
start node_modules\.bin\cra-redux
Impact
This package creates the following directory tree into your project: (NOTE: All deleteMe files are for example content)
|-- public
|-- src
+| |-- redux
+| | |-- store.js
+| | |
+| | |-- actions
+| | | |-- types.js
+| | | |-- deleteMeActions.js
+| | |
+| | |-- reducers
+| | | |-- index.js
+| | | |-- deleteMeReducer.js
+| | |
+| | |-- sample
+| | | |-- components
+| | | | |-- DeleteMe.js