Reactime is a debugging tool for React developers. It records state whenever state is changed and allows user to jump to any previous recorded state.
One important thing to note. This devtool is for React apps using only stateful components and prop drilling. If you're using Redux, Hooks, Context, or functional components, this devtool will not function on your app.
Another thing is that this library does not work well when mixing React with direct DOM manipulation. Since DOM manipulation doesn't change any React state, this library cannot record or even detect that change. Of course, you should be avoiding mixing the two in the first place.
Two parts are needed for this tool to function. The chrome extension must be installed, and the NPM package must be installed and used in the React code.
After successfully installing the chrome extension, you can test Reactime functionalities in the demo repositories below.
-
Download the extension from Chrome Web Store.
-
Install the npm package in your code.
npm i reactime
- Call the library method on your root container after rendering your App.
const reactime = require('reactime');
const rootContainer = document.getElementById('root');
ReactDOM.render(<App />, rootContainer);
reactime(rootContainer);
- Done! That's all you have to do to link your React project to our library.
After installing both the Chrome extension and the npm package, just open up your project in the browser.
Then open up your Chrome DevTools. There'll be a new tab called Reactime.
Whenever state is changed (whenever setState is called), this extension will create a snapshot of the current state tree and record it. Each snapshot will be displayed in Chrome DevTools under the Reactime panel.
You can click on a snapshot to view your app's state. State can be visualized in a JSON or a tree. Also, snapshots can be diffed with the previous snapshot, which can be viewed under the Diff tab.
Jumping is the most important feature of all. It allows you to jump to any previous recorded snapshots. Hitting the jump button on any snapshot will change the DOM by setting their state.
Other handy features include:
- multiple tabs support
- a slider to move through snapshots quickly
- a play button to move through snapshots automatically
- a pause which button stops recording each snapshot
- a lock button to freeze the DOM in place. setState will lose all functionality while the extension is locked
- a persist button to keep snapshots upon refresh (handy when changing code and debugging)
- export/import the current snapshots in memory
- Ryan Dang - @rydang
- Bryan Lee - @mylee1995
- Josh Kim - @joshua0308
- Sierra Swaby - @starkspark
This project is licensed under the MIT License - see the LICENSE file for details