Ask HN: Easy Remote Debugging?

1 points by v-yanakiev 12 hours ago

After some difficulties with setting up remote debugging (SSH, SCTP stuff), I thought of a possible easier solution using Remote Connections (https://en.wikipedia.org/wiki/Reverse_connection):

    1. A VS Code debug window-lookalike front-end.

    2. A package, which you install on your app, which sets up a debugger over the app's process, and INITIATES a WebSocket connection with a remote proxying service (see below).

    3. A service which proxies the debugger's connection to the front-end, establishing the debug session.
Would anyone be interested in such a service? It'd likely be open-sourced, allowing you to set up your own remote debugging proxying service if you wished.