Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 453 Bytes

File metadata and controls

29 lines (22 loc) · 453 Bytes

Solid Debugger

Playing around with the best way to visualize declarative graphs

Eventually you will be able to write the following

import { render } from "solid-js/web";
import { Debugger } from "solid-debugger";

const App = () => {
  return "your app code here";
};

render(
  () => (
    <Debugger>
      <App />
    </Debugger>
  ),
  document.getElementById("app")
);

Demo

  1. pnpm i
  2. pnpm run dev
  3. http://localhost:3000