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 trialFabian Pijpers
Courses Plus Student 41,372 PointsWhat is the right way?
How do you get the right responce?
const https = require("https");
const request = https.get("https://teamtreehouse.com/chalkers.json", response => {
let responseBody = "";
response.on("data", dataChunk => {
});
response.on("", () => {
console.log(responseBody);
});
});
request.on("error", error => {
console.error(error.message);
});
2 Answers
Steven Parker
231,236 PointsThe challenge is asking you to "... modify the data callback to concatenate the stream of data to the responseBody
." So that means you would add code to the blank line provided after "response.on("data", dataChunk => {
", which is the body of the "data callback".
And you can concatenate the "dataChunk" to the existing "responseBody" with the "+=" operator.
I'll bet you can get it now, but write again if you still have trouble.
Fabian Pijpers
Courses Plus Student 41,372 PointsI have already solved the challenge but thums up to you anyway