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 Node.js Basics (2014) Building a Command Line Application Making a GET Request with http

Gabriel Serrao
Gabriel Serrao
2,322 Points

I think there are issues with the editor, do not let me compile my program correctly

my answer for step three was:

https.get("https://teamtreehouse.com/chalkers.json", function(response) {});

app.js
//Problem: We need a simple way to look at a user's badge count and JavaScript points
//Solution: use node.js to conect to treehouse's Api to get profile information to printout

var https = require('https');
var http = require('http');
var username = "chalkers";

function printMessage(userName, badgeCount, points) {
  var message = userName + " has " + badgeCount + " total badge(s) and " + points + " in JavaScript";
  console.log(message);
}

//Connect to the API url (http://www.teamtreehouse.com/username.json)
//var req = https.get("https://teamtreehouse.com/" + username + ".json", function(response) {
 // console.log(response.statusCode);
//});

http.get("http://teamtreehouse.com/chalkers.json", function(response))

//Read the data
//Parse the data
//Print the data
printMessage("Gabriel", 1000, 200000);