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

Installation question about Gulp

I am having trouble making gulp recognize my files? when I try to run a gulp command, it shows that I have gulp installed, but it says no gulpfile found. In the course the teacher uses his sublime shortcut. However, I cannot figure out how to install sublime into my terminal and am not sure how to make the terminal recognize that I created a gulp file a different way. Thanks

1 Answer

Gulp scans the current directory for a file named gulpfile.js.

It sounds like you have gulp installed for your project. If not, run npm install gulp --save-dev.

Also, you should be able to do this in the terminal. Solutions exist for text editors and IDEs, but all they are doing under the hood is calling the command line interface.