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

marc Haan
marc Haan
4,315 Points

Don't use var http = require("http"); use var https = require("https"); In the node.js courses

When getting the team tree house api in the node.js courses use https instead of http. I think they updated to https after making the course so http isn't working any more.

1 Answer

Steven Parker
Steven Parker
231,271 Points

Also change the method calls (like http.get into https.get) and the URL strings ("http" :point_right: "https").