An open API service indexing awesome lists of open source software.

https://github.com/smx-smx/jstracepoc

Proof of concept that traces all Javascript lines
https://github.com/smx-smx/jstracepoc

breakpoint debug electron javascript poc trace

Last synced: 27 days ago
JSON representation

Proof of concept that traces all Javascript lines

Awesome Lists containing this project

README

          

# JsTracePOC
Proof of concept that traces all Javascript lines by putting a breakpoint on each line.

Not sure how well it works with minified files since they pack more lines into one.

## Note: It's not particularly fast/efficient to place a breakpoint per line.

An alternative could be to replace all JS statements with a logger trampoline, but it would alter the original script