I built the same program 4 different ways. I started with callbacks, moved on to Promises, used generators, and finished up with async/await.
The program:
- Makes a request to Github’s users endpoint
- Pulls back my Github profile
- Logs the response
Here’s what I came up with.
Callbacks
I struggled to make an HTTP request using callbacks. I’ve mostly used Promises to write asynchronous JavaScript. I generally use axios or fetch in my applications, which are both Promise-based.
I ended up having to turn to XMLHTTPRequest for this version of the application, which I’ve never used before!
Using Callbacks
I’ll walk you through what this code does:
- I define a function called
makeHTTPRequest. It’s designed to actually make the request to Github. - I pass three methods to
makeHTTPRequest,url,methodType, andcallback.urlis the endpoint I want to hit.methodTypeis the HTTP method I want to use. Andcallbackis the function I want to call when I actually get a response back from Github. - I define a function called
getLoginand pass itresponseas an argument. The function takes the response I receive from Github, and parses it to JSON. Then, it logs the parsed response. - I pass
getLoginintomakeHTTPRequestascallback. That meansgetLoginwill take the response from Github has it’s argument.
Promises
After achieving my goals with callbacks, I attempted with promises. This felt straightforward, since I’ve done it many times before.
Using Promises
- I defined a function called
makeHTTPRequestand passed it a username. - I used
fetchto make a request to Github. - I use
.then()to wait for the request to Github to complete, and then convert the response to JSON. - I log the response
Generators
This was my first foray into generators. The syntax and concept were totally foreign to me upon approaching this challenge.
Using Generators
- I define
getUserand say that it’s a generator by using the * syntax. I pass inusernameas an argument.
2. I create a variable called response and set it equal to response I receive from Github after making an HTTP request using fetch. The important piece of line 3 is that I use the keyword yield. yield is telling my program that I do want to set response equal to the response I get back from Github, but only after the request is completed.
3. I follow the same pattern again when I set parsedResponse equal to response.json(). I have to wait for the Promise to resolve before I can set my variable. If I don’t use yield, when I try to log parsedResponse, I get: Promise {<pending>} back.
Async/Await
Finally, I wrote the application once more using ES7 async/await. Since I did this after building the same application with generators, it became really obvious how async/await is built on top of generators.
- I define an
asyncfunction calledgetUserthat takesusernameas an argument. - I created a variable called
responseand set it equal to the response I receive from Github after making a request to the/users/:idendpoint. The key is that I use theawaitkeyword to tell my program to wait for the request to resolve itself before settingresponseequal to the response I get back. - I use the same pattern again on line 4.
- Then I log the parsed response.
Takeaways
This was a worthy endeavor for a few reasons. First of all, I hadn’t used callbacks much, so I didn’t really know how big of a deal Promises were. I also had been taking fetch and axios for granted, since they made making HTTP requests so much more straightforward.
I also had never used generators or async/await. Although I found async/await much easier to use than generators, it was helpful to see how async/await was built on top of generators. It was also fun to get my hands dirty with some ES7 syntax.
