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 trialChristopher Parke
21,978 Pointserror.message is printing "undefined" instead of an error message.
Chalkers is getting a nice error message, but mine just says undefined. Not sure why.
var Profile = require("./profile.js");
//2. Handle HTTP route GET / and POST / i.e. Home function home(request, response) { //if url == "/" && GET if (request.url === "/") { //show search response.writeHead(200, {'Content-Type': 'text/plain'}); response.write("Header\n"); response.write("Search\n"); response.end("Footer\n"); }
}
//if url == "/" && POST //redirect to /:username
//3. Handle HTTP route Get /:username i.e. /chalkers function user(request, response) { //if url == "/..." var username = request.url.replace("/", ""); if (username.length > 0) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.write("Header\n");
//get json from Treehouse
var studentProfile = new Profile(username);
//on "end"
studentProfile.on("end", function(profileJSON) {
//show profile
//Store the values which we need
var values = {
avaterUrl: profileJSON.gravatar_url,
username: profileJSON.profile_name,
badges: profileJSON.badges.length,
javascriptPoints: profileJSON.points.JavaScript
}
//Simple response
response.write(values.username + " has " + values.badges + " badges\n");
response.end("Footer\n");
});
//on error
studentProfile.on("error", function(error){
//show error
response.write(error.mmessage + "\n");
response.end("Footer\n");
});
} }
module.exports.home = home; module.exports.user = user;