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 Gulp Basics Welcome to Gulp.js Gulp in Action

Usman Mehmood
seal-mask
.a{fill-rule:evenodd;}techdegree
Usman Mehmood
Full Stack JavaScript Techdegree Student 14,330 Points

How useful is gulp?

It seems we're using Gulp for the production environment (i.e. minifying JS, etc...) even though this is something we should do last when working on a project. Am I understanding this wrong? Doesn't it make more sense to use non-minified versions of javascript until you have to make the production version?

1 Answer

Sean T. Unwin
Sean T. Unwin
28,690 Points

That's the beauty of Gulp, and customizing build tooling in general. That is that you can create different functionality for what to do in specific environments e.g. development, production, QA.

To address the title of your question, yes, Gulp is useful and can be extremely useful. It's all up to you how to create the pipelines for your build processes.