Skip to content

Commit edb0cbb

Browse files
committed
Added table.
1 parent 1e7df09 commit edb0cbb

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

README.md

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# React Rewind : A Time Travel Debugger for React
22
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/reactrewind/react-rewind/pulls) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)<br/>
3-
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.
55

66
- 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
1110

1211

1312
**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
1615
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.
1716

1817
### 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.
2119

2220
### Installing
2321
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.
2624

2725
If you prefer to install locally, setup instructions are as follows:
2826
```
29-
git clone https://github.com/reactrewind/react-rewind.git`
27+
git clone https://github.com/reactrewind/react-rewind.git
3028
cd reactrewind
3129
npm install
3230
npm run rewind
3331
```
3432

35-
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/>
3836
Click `Record` and begin interacting with your application.
3937

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
4338

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.
4540

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 |
4648
## Contributing
4749

4850
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,
5759

5860
## License
5961

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
6163

0 commit comments

Comments
 (0)