nodedump icon indicating copy to clipboard operation
nodedump copied to clipboard

Outputs variables in a visual, easy to read format based on ColdFusion's CFDUMP tag

Results 2 nodedump issues
Sort by recently updated
recently updated
newest added

I was looking to find a nice "echo" type of http server to dump http requests for debugging purposes, and found nodedump, which works great. A great demo app for...

Hello. This code on receiving a request results with no console output and 100% CPU load. ``` javascript require('https').createServer({pfx:require('fs').readFileSync('./server.pfx')},function(request, response) { console.log(require('nodedump').dump(request)) } ).listen(1313); ``` Commands which I used to...