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: docs/introduction/quick-start.md
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,19 @@ hide_title: true
9
9
10
10
## Purpose
11
11
12
-
The `redux-starter-kit` package is intended to help address three common complaints 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"
16
16
- "Redux requires too much boilerplate code"
17
17
18
18
We can't solve every use case, but in the spirit of [`create-react-app`](https://github.com/facebook/create-react-app) and [`apollo-boost`](https://dev-blog.apollodata.com/zero-config-graphql-state-management-27b1f1b3c2c3), we can try to provide some tools that abstract over the setup process and handle the most common use cases, as well as include some useful utilities that will let the user simplify their application code.
19
19
20
-
This package is _not_ intended to solve every possible complaint 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.
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
+
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
24
+
you make your Redux code better.
21
25
22
26
## What's Included
23
27
@@ -31,11 +35,18 @@ This package is _not_ intended to solve every possible complaint about Redux, an
31
35
32
36
## Installation
33
37
34
-
`redux-startr-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:
35
39
36
40
```bash
37
-
npm install --save redux-startr-kit
41
+
npm install --save redux-starter-kit
38
42
```
39
43
40
44
It is also available as a precompiled UMD package that defines a `window['redux-starter-kit']` global variable.
41
45
The UMD package can be used as a [`<script>` tag](https://unpkg.com/redux-starter-kit/dist/redux-starter-kit.umd.js) directly.
46
+
47
+
48
+
## Help and Discussion
49
+
50
+
The **[#redux channel](https://discord.gg/0ZcbPKXt5bZ6au5t)** of the **[Reactiflux Discord community](http://www.reactiflux.com)** is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us!
51
+
52
+
You can also ask questions on [Stack Overflow](https://stackoverflow.com) using the **[#redux tag](https://stackoverflow.com/questions/tagged/redux)**.
0 commit comments