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 Easily Debug Express (and other node apps)

Thomas Euget
Thomas Euget
10,615 Points

what's the point of using nodemon if u have gulp?

tks Thomas

1 Answer

akak
akak
29,445 Points

Primary task of gulp is to work with front-end stuff - minify scripts, uglify, compile css, change ES6 to ES5 etc. while nodemon is taking care of restarting node server when you make changes on back-end - endpoints, how routes are handled etc.

But of course there is a way to add server reload to gulp and have everything in one place. So I would say it's a matter of preference.