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) Doing more with Express Using β€œexpress-generator” to Start an Express Project

Express.JS question about Express Generator

In the Express generator I noticed that to load the file is uses port localhost:3000. However, there's nothing specifically stating to use port 3000 (e.g., app.listen(3000)). Is localhost 3000 a default port to use or is there some other code that I'm missing?

1 Answer

Look for port in file /bin/www

Thanks!