0

I am currently debugging a Nodejs Express application and I was wondering if there was a way to inspect the console log object similar to how you would do when developing web applications in Chrome or Firefox.
I.E:

  var myObj = [{"hello": "world"}];
  console.log(myObj);

Inspect Object:

enter image description here

Below is an example of a console.log() I am trying to inspect from Express:

enter image description here

1 Answer 1

1

Check out node-inspector to debug your Node.js script in a browser.

Here's a link to a video showing how to use the module.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.