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 trialvryiziilos
Full Stack JavaScript Techdegree Student 23,052 PointsCode not working
profile.js
var http = require('http');
// 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);
}
function getProfile(username){
var request = http.get('http://teamtreehouse.com/'+username+'.json', function(response){
var body = "";
response.on('data', function(chunk){
body += chunk;
});
response.on('end', function(chunk){
if (response.statusCode === 200){
try{
// Parse data
var profile = JSON.parse(body);
// Print the data
printMessage(profile.name, profile.badges.length, profile.points.JavaScript);
}
catch(error){
// Parse error
printError(error.message);
}
}else{
var error = {message : 'There was a problem getting info for ' + username + '('
+ http.STATUS_CODES[response.statusCode] + ').'};
printError(error);
}
});
});
// Connection Error
request.on('error', printError);
}
module.exports.get = getProfile;
app.js
var profile = require("./profile.js");
profile.getProfile('konstantinminevich');
ERROR: Undefined is not a function - pointing to profile.getProfile(..);
1 Answer
vryiziilos
Full Stack JavaScript Techdegree Student 23,052 PointsNevermind, I realized that I am exporting 'get', but calling 'getProfile' in app.js. Now it's working.