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 Handling Parsing and Status Code Errors

I get "Unexpected token ILLEGAL" instead of "Unexpected token N", and also a whole lot longer string in response.

Also why isn't my code getting formatting properly?

var https = require("https");
var username = "brendanwhiting123";

//Print out message

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

//Print out error messages
function printError(error) {
  console.error(error.message);
}


//Conect to the API URL (https://teamtreehouse.com/username.json)

var request = https.get("https://teamtreehouse.com/" + username + ".json", function(response) {
  var body = "";
  console.log(response.statusCode)
//Read the data
  response.on('data', function(chunk){
    body += chunk;
  });
  response.on('end', function() {
    try {
      var profile = JSON.parse(body);
      printMessage(username, profile.badges.length, profile.points.JavaScript);
    } catch(error) {
      //Parse Error
      printError(error);  
    }





  });  
//Parse the data
//Print the data

});

//Connection Error
request.on("error", printError) {
});

I fixed your code so it displays properly. There was a random back-tick in the middle, after a semi-colon.

Your final // Connection error is off. It should be:

request.on('error', printError);