Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

alex mattingley
alex mattingley
7,508 Points

How to Run node-inspector with express-generator application?

So in the express generator video, you all go over how to quickly scaffold an app using express generator, but what isn't entirely clear is how to run node-inspector with an app that has been generated in this way.

In the app that we built on our own we run node-inspector by opening up two different tabs in the console, and in one tab running:

nodemon --debug src/app.js

And in the other tab running

node-inspector

Obviously I have tried several variations of this in my application but none of them seem to be working. Any recommendations?