You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
*ngRedux lets you easily connect your angular components with Redux.*
@@ -23,22 +24,32 @@ For Angular 2 see [ng2-redux](https://github.com/wbuchwalter/ng2-redux).
23
24
24
25
## Installation
25
26
#### npm
27
+
26
28
```js
27
29
npm install --save ng-redux
28
30
```
31
+
29
32
#### bower (deprecated)
30
-
**Warning!**ng-redux will stop being published to bower when version 4.0.0 hits. Bower recommends using yarn and webpack as an alternative for new projects.
33
+
**Warning!**Starting with 4.0.0, we will no longer be publishing new releases on Bower. You can continue using Bower for old releases, or point your bower config to the UMD build hosted on unpkg that mirrors our npm releases.
@@ -124,7 +135,7 @@ Creates the Redux store, and allow `connect()` to access it.
124
135
#### Arguments:
125
136
*`reducer`\(*Function*): A single reducer composed of all other reducers (create with redux.combineReducer)
126
137
*[`middlewares`]\(*Function[]*): Optional, An array containing all the middleware that should be applied. Functions and strings are both valid members. String will be resolved via Angular, allowing you to use dependency injection in your middlewares.
127
-
*[`storeEnhancers`]\(*Function[]*): Optional, this will be used to create the store, in most cases you don't need to pass anything, see [Store Enhancer official documentation.](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer)
138
+
*[`storeEnhancers`]\(*Function[]*): Optional, this will be used to create the store, in most cases you don't need to pass anything, see [Store Enhancer official documentation.](https://github.com/reactjs/redux/blob/master/docs/Glossary.md#store-enhancer)
128
139
*[`initialState`]\(*Object*): Optional, the initial state of your Redux store.
0 commit comments