All Projects → CM-Tech → solid-debugger

CM-Tech / solid-debugger

Licence: other
A debugger for solid-js

Programming Languages

typescript
32286 projects
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to solid-debugger

stackvm
Virtual Machine with a 240x160 VRAM display.
Stars: ✭ 47 (+67.86%)
Mutual labels:  debugger
RailLink
Compact isolated version of J-Link v9.
Stars: ✭ 69 (+146.43%)
Mutual labels:  debugger
heaptrace
helps visualize heap operations for pwn and debugging
Stars: ✭ 252 (+800%)
Mutual labels:  debugger
xkdb
Xinu Kernel DeBugger (xkdb) - GDB for Xinu backends
Stars: ✭ 19 (-32.14%)
Mutual labels:  debugger
hilda
LLDB wrapped and empowered by iPython's features
Stars: ✭ 99 (+253.57%)
Mutual labels:  debugger
nxdk-rdt
Remote Dev Tool is a tool to remote control an Xbox using memory access and RPC
Stars: ✭ 23 (-17.86%)
Mutual labels:  debugger
nf-Visual-Studio-extension
🧰 Visual Studio extension for .NET nanoFramework
Stars: ✭ 42 (+50%)
Mutual labels:  debugger
haskell-debug
Implements a graphical haskell debugger in atom, using ghci
Stars: ✭ 21 (-25%)
Mutual labels:  debugger
Virtual-Jaguar-Rx
Virtual Jaguar, an Atari Jaguar emulator, with integrated debugger
Stars: ✭ 35 (+25%)
Mutual labels:  debugger
jsish
Jsi is a small, C-embeddable javascript interpreter with tightly woven Web and DB support.
Stars: ✭ 32 (+14.29%)
Mutual labels:  debugger
GoDebug
Go debugger (Delve) integration with Sublime Text 3
Stars: ✭ 20 (-28.57%)
Mutual labels:  debugger
jaylink
A Rust library for talking to J-Link USB devices
Stars: ✭ 28 (+0%)
Mutual labels:  debugger
hello-world-gdb
Simple hello world program for debugging with gdb
Stars: ✭ 29 (+3.57%)
Mutual labels:  debugger
SDA
SDA is a rich cross-platform tool for reverse engineering that focused firstly on analysis of computer games. I'm trying to create a mix of the Ghidra, Cheat Engine and x64dbg. My tool will combine static and dynamic analysis of programs. Now SDA is being developed.
Stars: ✭ 98 (+250%)
Mutual labels:  debugger
sketchup-ruby-debugger
Ruby API debugger for SketchUp 2014 and later.
Stars: ✭ 62 (+121.43%)
Mutual labels:  debugger
b1m0-dbg
linux debugger
Stars: ✭ 11 (-60.71%)
Mutual labels:  debugger
solid-dnd
A lightweight, performant, extensible drag and drop toolkit for Solid JS.
Stars: ✭ 251 (+796.43%)
Mutual labels:  solidjs
tailwind-layouts
Collection of Tailwind Layouts
Stars: ✭ 53 (+89.29%)
Mutual labels:  solidjs
Linux-Kernel-Driver-Programming
Implementation of PCI drivers, kprobe, sysfs, devfs, sensor driver, miscdevices, synchronization
Stars: ✭ 43 (+53.57%)
Mutual labels:  debugger
roku-develop
Roku development utility - zip and deploy a Roku project to multiple devices.
Stars: ✭ 16 (-42.86%)
Mutual labels:  debugger

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].