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 Express Basics (2015) Developing Express Apps Like a Boss Interactive Debugging and Exploratory Programming

jsdevtom
jsdevtom
16,963 Points

You can open a new tab in zsh shell (Babun) when running Windows by clicking Alt + F2 or right click top, then New Tab

:-)

Thanks Tom good to know! Also found out we can run both the 'nodemon' and 'node-inspector' modules at the same time in 1 terminal window by running one of the modules as a background process.

We can do this with the following commands:

node-inspector &  //the '&' opens node-inspector and runs it in the background

Then we can follow up with nodemon as shown in the video:

nodemon --debug app.js

Here was a helpful link on running processes in the background