
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
This little tool lets you debug your running node.js applications without setting breakpoints!
npm install debug-live
//require debug-live
var debugLive = require("debug-live");
//paste in this snippet of code
//(the second parameter is the configurable port Debug Live should run on)
debugLive(function (exprToEval) {
return eval(exprToEval);
},1337);
//let your app do what it needs to do
var counter = 0;
setInterval(function() {
counter++;
},100);
var a = {
a : "abc",
b : "def"
};
Start your app, telnet to Debug Live, and look at that all those variables!
$ telnet localhost 1337
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Welcome to the Live Debugger:
>counter
36
>counter
51
>counter
70
>a
[object Object]
>a.a
abc
>a.b
def
>a.b.c
undefined
>a.doesntExist.a
TypeError: Cannot read property 'a' of undefined
>a
[object Object]
>JSON.stringify(a, null, "\t")
{
"a": "abc",
"b": "def"
}
>
FAQs
Debug a running node.js app without breakpoints!
We found that debug-live demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.