No tutorials come with Node.js, it looks like you're probably referring to the
nodeschool.io tutorials. They have their own discussion threads hosted on GitHub here:
https://github.com/nodeschool/discussions which might be a good place to ask about specific exercises in their tutorials.
To answer your question, one call to http.get does not pull any data, it creates a stream, which (generally) will eventually emit all of the data requested. If you're calling http.get multiple times, then you're creating multiple requests, each of which will stream the entire response.
Hope this helps,
Jimb Esser