Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 326 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 326 Bytes

Promises vs Callbacks

npm install

Callbacks

node callbacks.js

This shows an example of chaining calls together using callbacks. This leads to a style called Christmas Tree code because it resembles a christmas tree.

Promises

node promises.js

This shows how to chain calls together using the q library and promises.