SolidJS time-travel debugger
npm install solid-rewindA time-travel debugger for SolidJS.
Use this with our chrome extension: Solid Rewind Extension
ATTENTION: This extension is still in development.
Features that will be within scope by Jan 15 release:
- Support for state in stores.
- Dev-only run. Currently our code runs even in production mode.
- Tree view of component hierarchy.
1. install our package with
``javascript`
npm i solid-rewind
2. Import our Rewind component at the top level of your app.
3. Wrap your top-level component in our
`javascript
import Rewind from "solid-rewind";
render(() => {
}, document.getElementById("root"));
``
That's it! Build your project and open our chrome extention along-side it.