An open API service indexing awesome lists of open source software.

https://github.com/noahspott/intro-node


https://github.com/noahspott/intro-node

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Introduction to Node.js, v3

## Course Notes

### Async Code

#### What are 3 reasons why some code would be asynchronous (90% of the time)?

1. Doing something over the network
2. Using some kind of timing function (setTimeout setInterval)
3. Interacting with storage

#### What is the JS solution to callback hell?

Promises!

#### What does await do?

Pauses the execution of the awaited function until a Promise is settled.