-
Notifications
You must be signed in to change notification settings - Fork 1.2k
General Promise Resources
Domenic Denicola edited this page Sep 4, 2013
·
13 revisions
- "Redemption from Callback Hell" (video) introduces how you can avoid the problems of messy callback APIs by using promises
- "Promises, Promises" (video) introduces promises from the ground up, gives an overview of the recent history of promises, and provides some guidance on using promises in your real-world code.
- "Callbacks, Promises, and Coroutines (oh my!)" is a deep dive into asynchronous programming patterns and practices, including introductory material for those new to asynchronous programming.
- "Boom! Promises/A+ Was Born" explains the Promises/A+ zeitgeist.
- promisejs.org's Introduction page shows the very basics of using promises.
- "You're Missing the Point of Promises" emphasizes the parallel between sequential synchronous code and promise-based asynchronous code.