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 trialsimon lavery
17,485 PointsGulp basics
Is the gup basics video up to date, I am trying to use http-sever and it keeps telling me file not found. I have installed it globally on my comp, i have tried saving it as a dependency, I am following the vid exactly
2 Answers
George Kiknadze
837 PointsYou can also try live-server. It's doing the same job but also watching file changes and if you edit any file in your directory it will restart server and refresh your browser.
Leslie Heinzen
26,662 PointsLate to the party, but here is a solution in case anyone else runs into the problem. (This is actually mentioned in the video).
Type the following in your terminal:
npm install http-server -g
You should no longer receive the "file not found" error when attempting to use http-server, and should be able to use it and follow along from then on.
Good luck!
Asa Smith
10,009 PointsAsa Smith
10,009 PointsDid you ever get this too work?