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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
15
15
### Purpose
16
16
17
-
The `redux-starter-kit` package is intended to help address three common concerns about Redux:
17
+
The Redux Starter Kit package is intended to help address three common concerns about Redux:
18
18
19
19
- "Configuring a Redux store is too complicated"
20
20
- "I have to add a lot of packages to get Redux to do anything useful"
@@ -26,7 +26,7 @@ This package is _not_ intended to solve every possible concern about Redux, and
26
26
27
27
### What's Included
28
28
29
-
`redux-starter-kit` includes:
29
+
Redux Starter Kit includes:
30
30
31
31
- A `configureStore()` function with simplified configuration options. It can automatically combine your slice reducers, adds whatever Redux middleware you supply, includes `redux-thunk` by default, and enables use of the Redux DevTools Extension.
32
32
- A `createReducer()` utility that lets you supply a lookup table of action types to case reducer functions, rather than writing switch statements. In addition, it automatically uses the [`immer` library](https://github.com/mweststrate/immer) to let you write simpler immutable updates with normal mutative code, like `state.todos[3].completed = true`.
@@ -36,6 +36,6 @@ This package is _not_ intended to solve every possible concern about Redux, and
36
36
37
37
## Documentation
38
38
39
-
The `redux-starter-kit` docs are now published at **https://redux-starter-kit.js.org**.
39
+
The Redux Starter Kit docs are now published at **https://redux-starter-kit.js.org**.
40
40
41
41
We're currently expanding and rewriting our docs content - check back soon for more updates!
@@ -67,7 +67,7 @@ This works because object keys that are not natively supported by JavaScript (li
67
67
68
68
In principle, Redux lets you use any kind of value as an action type. Instead of strings, you could theoretically use numbers, [symbols](https://developer.mozilla.org/en-US/docs/Glossary/Symbol), or anything else ([although it's recommended that the value should at least be serializable](https://redux.js.org/faq/actions#why-should-type-be-a-string-or-at-least-serializable-why-should-my-action-types-be-constants)).
69
69
70
-
However, `redux-starter-kit` rests on the assumption that you use string action types. Specifically, some of its features rely on the fact that with strings, the `toString()` method of an `createAction()` action creator returns the matching action type. This is not the case for non-string action types because `toString()` will return the string-converted type value rather than the type itself.
70
+
However, Redux Starter Kit rests on the assumption that you use string action types. Specifically, some of its features rely on the fact that with strings, the `toString()` method of an `createAction()` action creator returns the matching action type. This is not the case for non-string action types because `toString()` will return the string-converted type value rather than the type itself.
Copy file name to clipboardExpand all lines: docs/introduction/quick-start.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ hide_title: true
9
9
10
10
## Purpose
11
11
12
-
The **`redux-starter-kit`** package is intended to help address three common concerns about Redux:
12
+
The **Redux Starter Kit** package is intended to help address three common concerns about Redux:
13
13
14
14
- "Configuring a Redux store is too complicated"
15
15
- "I have to add a lot of packages to get Redux to do anything useful"
@@ -20,12 +20,12 @@ We can't solve every use case, but in the spirit of [`create-react-app`](https:/
20
20
This package is _not_ intended to solve every possible concern about Redux, and is deliberately limited in scope. It does _not_ address concepts like "reusable encapsulated Redux modules", data fetching, folder or file structures, managing entity relationships in the store, and so on.
21
21
22
22
That said, **these tools should be beneficial to all Redux users**. Whether you're a brand new Redux user setting up your
23
-
first project, or an experienced user who wants to simplify an existing application, **`redux-starter-kit`** can help
23
+
first project, or an experienced user who wants to simplify an existing application, **Redux Starter Kit** can help
24
24
you make your Redux code better.
25
25
26
26
## What's Included
27
27
28
-
`redux-starter-kit` includes:
28
+
Redux Starter Kit includes:
29
29
30
30
- A [`configureStore()` function](../api/configureStore.md) with simplified configuration options. It can automatically combine your slice reducers, adds whatever Redux middleware you supply, includes `redux-thunk` by default, and enables use of the Redux DevTools Extension.
31
31
- A [`createReducer()` utility](../api/createReducer.md) that lets you supply a lookup table of action types to case reducer functions, rather than writing switch statements. In addition, it automatically uses the [`immer` library](https://github.com/mweststrate/immer) to let you write simpler immutable updates with normal mutative code, like `state.todos[3].completed = true`.
@@ -35,7 +35,7 @@ you make your Redux code better.
35
35
36
36
## Installation
37
37
38
-
`redux-starter-kit` is available as a package on NPM for use with a module bundler or in a Node application:
38
+
Redux Starter Kit is available as a package on NPM for use with a module bundler or in a Node application:
0 commit comments