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
Create the Redux Essentials page, take 2 (reduxjs#3740)
* Port admonition and code block CSS from RTK site
* Restructure sidebars to add "Tutorials" section
* Add empty "Quick Start" tutorial page
* Bump Docusaurus to alpha.48
* Fix text color in admonitions
* Add blockquote styling for other pages
* Add DetailedExplanation component
* Initial Quick Start intro content
* Quick Start: add "What is Redux" and "Terms" sections
* Quick Start: add "play with app" content
* Quick Start: create nested folder and rename file
* Store setup
* Quick Start: add slice, reducer, immutability, and thunk sections
* Quick start: Add React-Redux section
* Quick start: emphasize immutability, highlight JSX
* Tweak "know more?" and explanation styles
* Fix typo and add thunk usage mention
* Bump Docusaurus to alpha.50
* Temporarily rename files to .md to work around DS bug
See facebook/docusaurus#2551
* Add border color for highlight lines
* Add code block titles and test line highlights
* Initial project setup section
* Add reducer and data flow explanations
* Tweak wording
* Link example repo and sandbox
* Update Docusaurus
* Fill out "Basic Data Flow" page
* Add additional phrasing
* Add intro and summary content for part 3
* Shrink code block file header padding
* Finish writing Part 3
* Link to Immer docs
* Add initial Part 4 content
* Finish Quick Start part 4
* Remove unnecessary uses of "just"
* Add Part 5 outline
* Update page titles
* Half of part 5
* Finish Quick Start content. Yay!!!!!!
* Clean up tutorial part 1 based on review feedback
- Reworded several explanations
- Added "Immutability" section under "concepts"
- Added data flow diagram
- Removed leftover example code block
* Add "What You've Learned" to part 1
* Rename part 5 -> 6
* Rename part 4 -> 5
* Rename part 3 -> 4
* Rename part 2 -> 3
* Add new Part 2
* Fix up TODO comments and broken links
* Swap to new dataflow diagram
* Assorted edits and link fixes
* Rename "Quick Start" to "Redux Essentials"
* Fix links and rename images
* Update example app repo/sandbox links
* Clarify random seed behavior
* Rework introduction content
- Redid "Getting Started" page by moving RTK first and removing most
of the external tutorial links,
- Added RTK to "Installation" page
- Added description and "Best Practices" phrase to style guide
- Added external links to prereq concepts
- Fixed one-way data flow image
- Added "Tutorial" link to header/footer, pointing to Essentials
* Remove unwanted colors from pagination buttons
* Emphasize recommended tutorial
* Clean up README
* Fix PR preview redirect
* Clarify "smallest amount" wording
* Try to fix redirects
Copy file name to clipboardexpand all lines: docs/introduction/GettingStarted.md
+41-52
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
id: getting-started
3
3
title: Getting Started with Redux
4
-
description: 'Introduction : Getting Started: Resources to get started learning and using Redux'
4
+
description: 'Introduction > Getting Started: Resources to get started learning and using Redux'
5
5
hide_title: true
6
6
---
7
7
@@ -15,25 +15,9 @@ You can use Redux together with [React](https://reactjs.org), or with any other
15
15
16
16
## Installation
17
17
18
-
Redux is available as a package on NPM for use with a module bundler or in a Node application:
18
+
### Redux Toolkit
19
19
20
-
```bash
21
-
# NPM
22
-
npm install redux
23
-
24
-
# Yarn
25
-
yarn add redux
26
-
```
27
-
28
-
It is also available as a precompiled UMD package that defines a `window.Redux` global variable. The UMD package can be used as a [`<script>` tag](https://unpkg.com/redux/dist/redux.js) directly.
29
-
30
-
For more details, see the [Installation](Installation.md) page.
31
-
32
-
## Redux Toolkit
33
-
34
-
Redux itself is small and unopinionated. We also have a separate addon package called **[Redux Toolkit](https://redux-toolkit.js.org/)**,
35
-
which includes some opinionated defaults that help you use Redux more effectively. It's our official recommended approach
36
-
for writing Redux logic.
20
+
[**Redux Toolkit**](https://redux-toolkit.js.org) is our official recommended approach for writing Redux logic. It wraps around the Redux core, and contains packages and functions that we think are essential for building a Redux app. Redux Toolkit builds in our suggested best practices, simplifies most Redux tasks, prevents common mistakes, and makes it easier to write Redux applications.
37
21
38
22
RTK includes utilities that help simplify many common use cases, including [store setup](https://redux-toolkit.js.org/api/configureStore),
39
23
[creating reducers and writing immutable update logic](https://redux-toolkit.js.org/api/createreducer),
@@ -43,14 +27,40 @@ Whether you're a brand new Redux user setting up your first project, or an exper
43
27
simplify an existing application, **[Redux Toolkit](https://redux-toolkit.js.org/)** can help you
44
28
make your Redux code better.
45
29
46
-
## Create a React Redux App
30
+
Redux Toolkit is available as a package on NPM for use with a module bundler or in a Node application:
31
+
32
+
```bash
33
+
# NPM
34
+
npm install @reduxjs/toolkit
35
+
36
+
# Yarn
37
+
yarn add @reduxjs/toolkit
38
+
```
39
+
40
+
### Create a React Redux App
47
41
48
42
The recommended way to start new apps with React and Redux is by using the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux) for [Create React App](https://github.com/facebook/create-react-app), which takes advantage of **[Redux Toolkit](https://redux-toolkit.js.org/)** and React Redux's integration with React components.
49
43
50
44
```sh
51
45
npx create-react-app my-app --template redux
52
46
```
53
47
48
+
### Redux Core
49
+
50
+
The Redux core library is available as a package on NPM for use with a module bundler or in a Node application:
51
+
52
+
```bash
53
+
# NPM
54
+
npm install redux
55
+
56
+
# Yarn
57
+
yarn add redux
58
+
```
59
+
60
+
It is also available as a precompiled UMD package that defines a `window.Redux` global variable. The UMD package can be used as a [`<script>` tag](https://unpkg.com/redux/dist/redux.js) directly.
61
+
62
+
For more details, see the [Installation](Installation.md) page.
63
+
54
64
## Basic Example
55
65
56
66
The whole state of your app is stored in an object tree inside a single _store_.
@@ -111,49 +121,28 @@ In a typical Redux app, there is just a single store with a single root reducing
111
121
112
122
This architecture might seem like an overkill for a counter app, but the beauty of this pattern is how well it scales to large and complex apps. It also enables very powerful developer tools, because it is possible to trace every mutation to the action that caused it. You can record user sessions and reproduce them just by replaying every action.
113
123
114
-
## Example Projects
115
-
116
-
The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online.
117
-
118
-
See the complete list of examples in the **[Examples page](./Examples.md)**.
119
-
120
124
## Learn Redux
121
125
122
-
We have a variety of resources available to help you learn Redux, no matter what your background or learning style is.
123
-
124
-
### Just the Basics
125
-
126
-
If you're brand new to Redux and want to understand the basic concepts, see:
127
-
128
-
- The **[Motivation](./Motivation.md)** behind building Redux, the **[Core Concepts](./CoreConcepts.md)**, and the **[Three Principles](./ThreePrinciples.md)**.
129
-
- The **[basic tutorial in the Redux docs](../basics/README.md)**
130
-
- Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://egghead.io/series/getting-started-with-redux)** on Egghead.io
131
-
- Redux co-maintainer Mark Erikson's **["Redux Fundamentals" slideshow](http://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and **[list of suggested resources for learning Redux](http://blog.isquaredsoftware.com/2017/12/blogged-answers-learn-redux/)**
132
-
- If you learn best by looking at code and playing with it, check out our list of **[Redux example applications](./Examples.md)**, available as separate projects in the Redux repo, and also as interactive online examples on CodeSandbox.
133
-
- The **[Redux Tutorials](https://github.com/markerikson/react-redux-links/blob/master/redux-tutorials.md)** section of the **[React/Redux links list](https://github.com/markerikson/react-redux-links)**. Here's a top list of our recommended tutorials:
134
-
- Dave Ceddia's posts [What Does Redux Do? (and when should you use it?)](https://daveceddia.com/what-does-redux-do/) and [How Redux Works: A Counter-Example](https://daveceddia.com/how-does-redux-work/) are a great intro to the basics of Redux and how to use it with React, as is this post on [React and Redux: An Introduction](http://jakesidsmith.com/blog/post/2017-11-18-redux-and-react-an-introduction/).
135
-
- Valentino Gagliardi's post [React Redux Tutorial for Beginners: Learning Redux in 2018](https://www.valentinog.com/blog/react-redux-tutorial-beginners/) is an excellent extended introduction to many aspects of using Redux.
136
-
- The CSS Tricks article [Leveling Up with React: Redux](https://css-tricks.com/learning-react-redux/) covers the Redux basics well.
137
-
- This [DevGuides: Introduction to Redux](http://devguides.io/redux/) tutorial covers several aspects of Redux, including actions, reducers, usage with React, and middleware.
126
+
We have a variety of resources available to help you learn Redux.
138
127
139
-
### Intermediate Concepts
128
+
### Redux Essentials Tutorial
140
129
141
-
Once you've picked up the basics of working with actions, reducers, and the store, you may have questions about topics like working with asynchronous logic and AJAX requests, connecting a UI framework like React to your Redux store, and setting up an application to use Redux:
130
+
The [**Redux Essentials tutorial**](../tutorials/essentials/part-1-overview-concepts.md) is a "top-down" tutorial that teaches how to use Redux the right way, using our latest recommended APIs and best practices. We recommend starting there.
142
131
143
-
- The **["Advanced" docs section](../advanced/README.md)** covers working with async logic, middleware, routing.
144
-
- The Redux docs **["Learning Resources"](./LearningResources.md)** page points to recommended articles on a variety of Redux-related topics.
145
-
- Sophie DeBenedetto's 8-part **[Building a Simple CRUD App with React + Redux](http://www.thegreatcodeadventure.com/building-a-simple-crud-app-with-react-redux-part-1/)** series shows how to put together a basic CRUD app from scratch.
132
+
### Additional Tutorials
146
133
147
-
### Real-World Usage
134
+
- The Redux docs [**Basic tutorial**](../basics/README.md) and [**Advanced tutorial**](../advanced/README.md) are a "bottom-up" tutorial that teaches how Redux works, starting from first principles.
135
+
- The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online. See the complete list of examples in the **[Examples page](./Examples.md)**.
136
+
- Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://egghead.io/series/getting-started-with-redux)** and **[Building React Applications with Idiomatic Redux](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** video courses on Egghead.io
137
+
- Redux maintainer Mark Erikson's **["Redux Fundamentals" conference talk](http://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and [**"Redux Fundamentals" workshop slides**](https://blog.isquaredsoftware.com/2018/06/redux-fundamentals-workshop-slides/)
138
+
- Dave Ceddia's post [**A Complete React Redux Tutorial for Beginners**](https://daveceddia.com/redux-tutorial/)
148
139
149
-
Going from a TodoMVC app to a real production application can be a big jump, but we've got plenty of resources to help:
140
+
### Other Resources
150
141
151
-
- Redux creator Dan Abramov's **[free "Building React Applications with Idiomatic Redux" video series](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** builds on his first video series and covers topics like middleware, routing, and persistence.
152
142
- The **[Redux FAQ](../FAQ.md)** answers many common questions about how to use Redux, and the **["Recipes" docs section](../recipes/README.md)** has information on handling derived data, testing, structuring reducer logic, and reducing boilerplate.
153
-
- Redux co-maintainer Mark Erikson's **["Practical Redux" tutorial series](http://blog.isquaredsoftware.com/series/practical-redux/)** demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as **[an interactive course on Educative.io](https://www.educative.io/collection/5687753853370368/5707702298738688)**).
143
+
- Redux maintainer Mark Erikson's **["Practical Redux" tutorial series](http://blog.isquaredsoftware.com/series/practical-redux/)** demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as **[an interactive course on Educative.io](https://www.educative.io/collection/5687753853370368/5707702298738688)**).
154
144
- The **[React/Redux links list](https://github.com/markerikson/react-redux-links)** has categorized articles on working with [reducers and selectors](https://github.com/markerikson/react-redux-links/blob/master/redux-reducers-selectors.md), [managing side effects](https://github.com/markerikson/react-redux-links/blob/master/redux-side-effects.md), [Redux architecture and best practices](https://github.com/markerikson/react-redux-links/blob/master/redux-architecture.md), and more.
155
145
- Our community has created thousands of Redux-related libraries, addons, and tools. The **["Ecosystem" docs page](./Ecosystem.md)** lists our recommendations, and there's a complete listing available in the **[Redux addons catalog](https://github.com/markerikson/redux-ecosystem-links)**.
156
-
- If you're looking to learn from actual application codebases, the addons catalog also has a list of **[purpose-built examples and real-world applications](https://github.com/markerikson/redux-ecosystem-links/blob/master/apps-and-examples.md)**.
Copy file name to clipboardexpand all lines: docs/introduction/Installation.md
+22-2
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,33 @@ hide_title: true
7
7
8
8
# Installation
9
9
10
+
## Redux Toolkit
11
+
12
+
Redux Toolkit includes the Redux core, as well as other key packages we feel are essential for building Redux applications (such as Redux Thunk and Reselect).
13
+
14
+
It's available as a package on NPM for use with a module bundler or in a Node application:
15
+
16
+
```bash
17
+
# NPM
18
+
npm install @reduxjs/toolkit
19
+
20
+
# Yarn
21
+
yarn add @reduxjs/toolkit
22
+
```
23
+
24
+
It's also available as a UMD build, which can be loaded from [the `dist` folder on unpkg](https://unpkg.com/@reduxjs/toolkit/dist/). The UMD builds make Redux Toolkit available as a `window.RTK` global variable.
25
+
26
+
## Redux Core
27
+
10
28
To install the stable version:
11
29
12
30
```bash
31
+
# NPM
13
32
npm install redux
14
-
```
15
33
16
-
This assumes you are using [npm](https://www.npmjs.com/) as your package manager.
34
+
# Yarn
35
+
yarn add redux
36
+
```
17
37
18
38
If you're not, you can [access these files on unpkg](https://unpkg.com/redux/), download them, or point your package manager to them.
0 commit comments