2.0.0 • Published 6 years ago

create-react-app-add-redux v2.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

create-react-app-add-redux

This package adds a basic Redux cycle to the React boilerplate generated by create-react-app.

Installation

Run the following commands to install create-react-app and create-react-app-add-redux:

npm i -g create-react-app
npm i -g create-react-app-add-redux

Usage

First create a new app using create-react-app

create-react-app my-app
cd my-app
add-redux

Now the dependencies have been ejected and Redux has been installed and scaffolded.

Alternatively, if you want an alias for those three commands, you can paste this into your aliases file:

  add-react-redux-app() {
    create-react-app "$1";
    cd "$1";
    add-redux;
  }

This will let you run add-react-redux-app my-app to automatically create both the React boilerplate and Redux cycle inside of my-app.

2.0.0

6 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago