While debugging this:
```
var http = require('http');
var port = process.env.port || 1337;
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port);
```
Set a breakpoint inside the server function and expand `req.connection.ondata.arguments`. Node.js will stop responding to debugger requests (except Stop) and burn a CPU core until it is killed.
```
var http = require('http');
var port = process.env.port || 1337;
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port);
```
Set a breakpoint inside the server function and expand `req.connection.ondata.arguments`. Node.js will stop responding to debugger requests (except Stop) and burn a CPU core until it is killed.