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
A time travel debugger tool made to work with React 16.8+, designed to help engineers record and replay user sessions to fix bugs faster.
4
-
Debug issues easier by “rewinding” your session instead of having to reproduce the issue until you find the bug
3
+
A time travel debugger for React's useReducer hook, designed to help engineers record and replay user sessions to fix bugs faster.
4
+
Debug issues easier by “rewinding” your session instead of having to reproduce the issue until you find the bug.
5
5
6
6
- Press record and start interacting with your application
7
-
- Each action will be stored as a unique “event” in time
8
-
- Pause your recording and start observing all program activities
9
-
- Press play to “rewind” through your recorded actions
10
-
- View a real-time playback representation of your application state at any given time
7
+
- Each dispatched action will be stored as a unique “event” in time
8
+
- Rewind through your recorded actions with back buttom
9
+
- Press play to view your changing app state
11
10
12
11
13
12
**React Rewind is in active development. Please follow this repo for contribution guidelines and our development road map.**
@@ -16,8 +15,7 @@ Debug issues easier by “rewinding” your session instead of having to reprodu
16
15
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
17
16
18
17
### Prerequisites
19
-
20
-
Your application must be using the hooks useReducer for actions to be record.
18
+
Your application must be using the hook useReducer for actions to be record.
21
19
22
20
### Installing
23
21
React Rewind is available as a Chrome extension through the Google Chrome Web Store.
@@ -26,23 +24,27 @@ Click `Record` and begin interacting with your application.
26
24
27
25
If you prefer to install locally, setup instructions are as follows:
Head to [chrome://extensions/](chrome://extensions/)
36
-
Click `Load Unpacked` button and upload the chrome folder, located at react-rewind/src/browser/chrome
37
-
On your application page open Chrome Developer tools and select React Rewind from the tool bar.
33
+
Then head to [chrome://extensions/](chrome://extensions/)<br/>
34
+
Click `Load Unpacked` button and upload the chrome folder, located at react-rewind/src/browser/chrome.<br/>
35
+
On your application page open Chrome Developer tools and select React Rewind from the tool bar. <br/>
38
36
Click `Record` and begin interacting with your application.
39
37
40
-
As you interact with your application actions will populate in the events panel. These actions are clickable and will change the state of your page. The actions can be viewed in more detail in the right panel by inspecting the actions, effects, and state. The bottom panel allow you to rewind, fast forward,and play through all recorded actions.
41
-
42
-
## Running the tests
43
38
44
-
`npm run tests`
39
+
As you interact with your application actions will populate in the events panel. These actions are clickable and will change the state of your page. The actions can be viewed in more detail in the right panel by inspecting the actions, effects, and state. The time slider panel allows you to rewind, fast forward,and play through all recorded actions.
45
40
41
+
### The UI
42
+
|Property | Description |
43
+
| ------------- | ------------- |
44
+
| Events | Dispatched actions (three ways to view see below) <br/>Shows elapsed time since last dispatch |
45
+
|Actions | Events action type and payload |
46
+
|Effects | Difference between selected event and previous state |
47
+
|State | Overall state of the application at the selected time |
46
48
## Contributing
47
49
48
50
Please fork this repo. We welcome pull requests. For suggestions or to report bugs please log an issue.
@@ -57,5 +59,5 @@ We use [SemVer](http://semver.org/) for versioning. For the versions available,
57
59
58
60
## License
59
61
60
-
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
62
+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details
0 commit comments