Difference between revisions of "Promise object (JavaScript)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 40: Line 40:
 
* [http://www.codemag.com/article/1401061 The Simplest Thing Possible: Promises in JavaScript] by John V. Petersen
 
* [http://www.codemag.com/article/1401061 The Simplest Thing Possible: Promises in JavaScript] by John V. Petersen
 
* [http://www.benmvp.com/learning-es6-promises/ Learning ES6: Promises] by Ben Ilegbodu
 
* [http://www.benmvp.com/learning-es6-promises/ Learning ES6: Promises] by Ben Ilegbodu
* [  
+
* [http://lightstep.com/blog/traced-promises/ TracedPromise: Visualizing Async JS Code] by  Ben Cronin
 +
* [http://www.bennadel.com/blog/3125-on-the-difficult-problem-of-logging-errors-in-parallel-promises-in-javascript.htm On The Difficult Problem Of Logging Errors In Parallel Promises In JavaScript] by Ben Nadel
 +
* [https://curiosity-driven.org/promises-and-generators Easy asynchrony with ES6]
 +
* [http://colintoh.com/blog/staying-sane-with-asynchronous-programming-promises-and-generators Staying Sane With Asynchronous Programming: Promises and Generators] by Colin Toh
 +
* [http://jamesknelson.com/are-es6-promises-swallowing-your-errors/ Are JavaScript Promises swallowing your errors?] by James K. Nelson
 +
* [https://ponyfoo.com/articles/es6-promises-in-depth ES6 Promises in Depth]
 +
* [http://12devs.co.uk/articles/promises-an-alternative-way-to-approach-asynchronous-javascript/ Promises – an alternative way to approach asynchronous JavaScript] by Kishore Nallan
 +
* [https://www.gitbook.com/book/samypesse/js-promises/details Javascript Promises] by Samy Pessé
 +
* [http://eng.localytics.com/better-asynchronous-javascript/ Better Asynchronous JavaScript] by Francois Ward
 +
* [http://www.6dglobal.com/blogs/good-code-promises-javascript-2016-06-27 Good Code: Promises in JavaScript] by Cecelia Wren
 +
* [https://www.joezimjs.com/javascript/patterns-asynchronous-programming-promises/ Patterns for Asynchronous Programming With Promises]
 +
* [https://firebase.googleblog.com/2016/01/keeping-our-promises-and-callbacks_76.html Keeping our Promises (and Callbacks)] by Thomas Bouldin
  
 
=== YouTube videos ===
 
=== YouTube videos ===
Line 48: Line 59:
 
* [https://www.youtube.com/watch?v=2d7s3spWAzo Promises - Part 8 of Functional Programming in JavaScript]
 
* [https://www.youtube.com/watch?v=2d7s3spWAzo Promises - Part 8 of Functional Programming in JavaScript]
 
* [https://www.youtube.com/watch?v=oa2clhsYIDY Promises in Javascript] by David M. Lee, II
 
* [https://www.youtube.com/watch?v=oa2clhsYIDY Promises in Javascript] by David M. Lee, II
 +
* [https://www.youtube.com/watch?v=K6pihiILxrc Cleaning Up JavaScript Callbacks With Promises]
  
  
 
[[Category: JavaScript]]
 
[[Category: JavaScript]]
 
[[Category: JavaScript promises]]
 
[[Category: JavaScript promises]]

Revision as of 08:51, 25 September 2016

In JavaScript, the promise object is a used to handle asynchronous tasks.

A promise is composable, making it more complex than a callback function.

See also

External links

YouTube videos