- Node.js - https://nodejs.org/en/
- VSCode - https://code.visualstudio.com/
- Postman - https://www.getpostman.com/
- Git - https://git-scm.com/
- MongoDB - https://www.mongodb.com/
- MailTrap - https://mailtrap.io/
- Docgen - https://github.com/thedevsaddam/docgen
- MapQuest Dev API - https://developer.mapquest.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Links & Documentation | |
| - Final Repo - https://github.com/bradtraversy/devcamper-api | |
| - Final Deployed Project - https://devcamper.io | |
| - Specs Sheet - https://gist.github.com/bradtraversy/01adb248df70fb29e98c30cf659042cf | |
| ## Tools | |
| - Node.js - https://nodejs.org/en/ | |
| - VSCode - https://code.visualstudio.com/ |
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com