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
**Do you want to request a _feature_ or report a _bug_?**
7
-
8
-
(If this is a _usage question_, please **do not post it here**—post it on [Stack Overflow](http://stackoverflow.com/questions/tagged/redux) instead. If this is not a “feature” or a “bug”, or the phrase “How do I...?” applies, then it's probably a usage question.)
9
-
10
-
**What is the current behavior?**
11
-
12
-
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar.**
13
-
14
-
**What is the expected behavior?**
15
-
16
-
**Which versions of Redux, and which browser and OS are affected by this issue? Did this work in previous versions of Redux?**
1
+
---
2
+
name: "\U0001F41BBug report"
3
+
about: Something is wrong with Redux.
4
+
---
5
+
6
+
**Do you want to request a _feature_ or report a _bug_?**
7
+
8
+
(If this is a _usage question_, please **do not post it here**—post it on [Stack Overflow](http://stackoverflow.com/questions/tagged/redux) instead. If this is not a “feature” or a “bug”, or the phrase “How do I...?” applies, then it's probably a usage question.)
9
+
10
+
**What is the current behavior?**
11
+
12
+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar.**
13
+
14
+
**What is the expected behavior?**
15
+
16
+
**Which versions of Redux, and which browser and OS are affected by this issue? Did this work in previous versions of Redux?**
about: For usage questions, please use Stack Overflow or Reactiflux!
4
-
---
5
-
6
-
This is a bug tracker, not a support system. For usage questions, please use Stack Overflow or Reactiflux where there are a lot more people ready to help you out. Thanks!
7
-
8
-
https://stackoverflow.com/questions/tagged/redux
9
-
https://www.reactiflux.com/
1
+
---
2
+
name: "\U0001F914Support/Usage Question"
3
+
about: For usage questions, please use Stack Overflow or Reactiflux!
4
+
---
5
+
6
+
This is a bug tracker, not a support system. For usage questions, please use Stack Overflow or Reactiflux where there are a lot more people ready to help you out. Thanks!
Copy file name to clipboardExpand all lines: README.md
+15-12Lines changed: 15 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ It helps you write applications that behave consistently, run in different envir
8
8
You can use Redux together with [React](https://reactjs.org), or with any other view library.
9
9
It is tiny (2kB, including dependencies).
10
10
11
+
> **Note**: We are currently planning a rewrite of the Redux docs. Please take some time to **[fill out this survey on what content is most important in a docs site](https://docs.google.com/forms/d/e/1FAIpQLSfzIkY3fXZ8PrQKScYMK0YoEgALfAK2qQ0mOj1_ibKv2qDTuQ/viewform)**. Thanks!
@@ -90,7 +92,7 @@ Even if you haven't used Flux or Elm, Redux only takes a few minutes to get star
90
92
91
93
To install the stable version:
92
94
93
-
```
95
+
```sh
94
96
npm install --save redux
95
97
```
96
98
@@ -108,7 +110,7 @@ The Redux source code is written in ES2015 but we precompile both CommonJS and U
108
110
109
111
Most likely, you'll also need [the React bindings](https://github.com/reduxjs/react-redux) and [the developer tools](https://github.com/reduxjs/redux-devtools).
110
112
111
-
```
113
+
```sh
112
114
npm install --save react-redux
113
115
npm install --save-dev redux-devtools
114
116
```
@@ -215,7 +217,7 @@ The **[Building React Applications with Idiomatic Redux](https://egghead.io/cour
215
217
**[Practical Redux](https://www.educative.io/collection/5687753853370368/5707702298738688/)** is a paid interactive course by Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke). The course is designed to show how to apply the basic concepts of Redux to building something larger than a TodoMVC application. It includes real-world topics like:
216
218
217
219
- Adding Redux to a new Create-React-App project and configuring Hot Module Replacement for faster development
218
-
-Controling your UI behavior with Redux
220
+
-Controlling your UI behavior with Redux
219
221
- Using the Redux-ORM library to manage relational data in your Redux store
220
222
- Building a master/detail view to display and edit data
221
223
- Writing custom advanced Redux reducer logic to solve specific problems
@@ -230,7 +232,7 @@ The course is based on Mark's original free **["Practical Redux" blog tutorial s
230
232
Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke) has put together a [**Redux Fundamentals workshop**, and slides are available here](https://blog.isquaredsoftware.com/2018/06/redux-fundamentals-workshop-slides/). They cover:
231
233
232
234
- The history and purpose of Redux
233
-
- Reducers, actions, and working with a Redux store
235
+
- Reducers and actions, and working with a Redux store
234
236
- Using Redux with React
235
237
- Using and writing Redux middleware
236
238
- Working with AJAX calls and other side effects
@@ -239,14 +241,14 @@ Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke) has put togethe
For PDF, ePub, and MOBI exports for offline reading, and instructions on how to create them, please see: [paulkogel/redux-offline-docs](https://github.com/paulkogel/redux-offline-docs).
252
254
@@ -260,6 +262,7 @@ Almost all examples have a corresponding CodeSandbox sandbox. This is an interac
0 commit comments