Skip to content

oslabs-beta/solid-rewind

Repository files navigation

About

Solid Rewind is a time-trave debugger and component-tree visualizer for the reactive framework, SolidJS

animated

Features

  • Redux-style time-travel debugging, allowing you to ‘rewind’ to previous versions of your application’s state.
  • Dynamic, D3-visualization of your component tree
  • Integration with Chrome’s existing Dev Tools menu so you can troubleshoot your Solid App directly from your browser.

Installation

❗❗Before using, you must download our Chrome extension here❗❗

1. install our package with

npm i solid-rewind

2. Import our Rewind component at the top level of your app. 3. Wrap your top-level component in our component.

import Rewind from 'solid-rewind';

render( () => {
    <Rewind>
        <App />
    </Rewind>
}, document.getElementById('root'));

That's it! Build your project and access our tool in the chrome devtools menu!

Authors

Contributing

Solid Rewind launched on January 15, 2023 and is currently in active beta development through the OSlabs community initiative. The application is licensed under the terms of the MIT license, making it a fully open source product. Developers are welcome to contribute to the codebase and expand on its features.