Skip to content

Commit ac3a0a2

Browse files
committed
Add brief links to Replay for debugging
1 parent 8f9261a commit ac3a0a2

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

docs/tutorials/essentials/part-1-overview-concepts.md

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ You should also make sure that you have the React and Redux DevTools extensions
4949
- [Redux DevTools Extension for Chrome](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en)
5050
- [Redux DevTools Extension for Firefox](https://addons.mozilla.org/en-US/firefox/addon/reduxdevtools/)
5151

52+
[Replay.io](https://replay.io) also includes built-in support for the Redux Devtools and can be used for debugging React and Redux apps.
53+
5254
## What is Redux?
5355

5456
It helps to understand what this "Redux" thing is in the first place. What does it do? What problems does it help me solve? Why would I want to use it?

docs/tutorials/essentials/part-2-app-structure.md

+2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ The DevTools have several more commands and options to help you debug your app.
102102

103103
This makes it easier to trace what part of the code dispatched a specific action.
104104

105+
You can also use [Replay.io](https://replay.io) to make recordings of an app and use its built-in React and Redux DevTools support to investigate the application's behavior.
106+
105107
## Application Contents
106108

107109
Now that you know what the app does, let's look at how it works.

docs/tutorials/fundamentals/part-1-overview.md

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ Finally, you should make sure that you have the React and Redux DevTools extensi
5858
- [Redux DevTools Extension for Chrome](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en)
5959
- [Redux DevTools Extension for Firefox](https://addons.mozilla.org/en-US/firefox/addon/reduxdevtools/)
6060

61+
[Replay.io](https://replay.io) also includes built-in support for the Redux Devtools and can be used for debugging React and Redux apps.
62+
6163
## What is Redux?
6264

6365
It helps to understand what this "Redux" thing is in the first place. What does it do? What problems does it help me solve? Why would I want to use it?

docs/tutorials/fundamentals/part-4-store.md

+2
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,8 @@ Here's what the "State" and "Diff" tabs look like after we dispatched that "add
594594

595595
These are very powerful tools that can help us debug our apps and understand exactly what's happening inside.
596596

597+
You can also use [Replay.io](https://replay.io) to make recordings of an app and use its built-in React and Redux DevTools support to investigate the application's behavior.
598+
597599
## What You've Learned
598600

599601
As you've seen, the store is the central piece of every Redux application. Stores contain state and handle actions by running reducers, and can be customized to add additional behaviors.

0 commit comments

Comments
 (0)