Aug 27, 2017 · 1 min read
As for debugging node files with the Chrome debugging URL — Try installing and using the the “NIM” (Node Inspection Manager) Chrome extension. It [usually automatically] opens the console/debugger up after the node/mon server starts up with the--inspect flag.
If you’re testing a ‘GET’ request, I still like curlbecause it’s just right there in the console, but maybe that’s just me. I’d even use it when checking on the response from a really simple ’POST’ request alacurl -v -d "{'simple':1, 'data':0}" -X POST http...
