node-inspector shows 'No Properties' for objects
问题 I'm pretty new in the debugging scene, especially with node-inspecor. After I had installed node-inspector, I started my simple node app with the --debug parameter and was able to see the debug view at localhost:8080/debug?port=5858. When I let the app stop at this breakpoint: router.get('/people', function(req, res) { var num = 1; var str = 'rarf'; var obj = {x: 1, y: 2} console.log(req) // breakpoint }); and hover with the curser on the identifier, it shows as follows: req: Incoming Message