Difference between revisions of "Promise object (JavaScript)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) |
||
Line 52: | Line 52: | ||
* [https://www.joezimjs.com/javascript/patterns-asynchronous-programming-promises/ Patterns for Asynchronous Programming With Promises] | * [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 | * [https://firebase.googleblog.com/2016/01/keeping-our-promises-and-callbacks_76.html Keeping our Promises (and Callbacks)] by Thomas Bouldin | ||
+ | * [https://jellekralt.com/2016/02/18/replacing-async-utilities-with-promises/ Replacing async utilities with native promises] by Jelle Kralt | ||
+ | * [https://www.hacksrus.net/blog/2015/08/a-solution-to-swallowed-exceptions-in-es6s-promises/ A Solution To Swallowed Exceptions In ES6’s Promises] | ||
+ | * [http://engineering.invisionapp.com/post/mastering-promises/ 8 Tips For Mastering Javascript Promises] by Scott Rippey | ||
+ | * [http://codeutopia.net/blog/2016/06/29/the-best-resources-to-learn-about-javascript-promises/ The best resources to learn about JavaScript Promises] | ||
+ | * [https://jsfiddle.net/adamboduch/jkvkzhqk/ Native Promise versus jQuery Deferred] by Adam Boduch @ jsfiddle | ||
+ | * [https://codesi.nz/working-with-javascript-promises/ Working With Javascript Promises: Practices And Mistakes] @ by Adrian Oprea | ||
+ | |||
=== YouTube videos === | === YouTube videos === | ||
Line 60: | Line 67: | ||
* [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] | * [https://www.youtube.com/watch?v=K6pihiILxrc Cleaning Up JavaScript Callbacks With Promises] | ||
+ | * [https://www.youtube.com/watch?v=g90irqWEqd8 Async JavaScript with Promises] by Kyle Robinson Young | ||
[[Category: JavaScript]] | [[Category: JavaScript]] | ||
[[Category: JavaScript promises]] | [[Category: JavaScript promises]] |
Revision as of 08:02, 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
- Bluebird (JavaScript library)
- Callback (computer programming)
- Futures and promises
- jQuery promise method
External links
- Native JavaScript promises API by Serg Hospodarets
- Promises | Web fundamentals - Promises have arrived natively in JavaScript
- Promise @ developer.mozilla.org
- Promise.all() @ developer.mozilla.org
- JavaScript Promise API by David Walsh
- JavaScript Promises by Jake Archibald
- ES6 Promises by Dave Atchley
- Overview of JavaScript Promises by Sandeep Panda
- Promises for asynchronous programming @ exploringjs.com
- Embracing Promises in JavaScript
- Using Javascript native promises, resolve a promise after thenables attached @ Stack Overflow
- Native Support for Promises in Node.js @ Stack Overflow
- Best Practices for Using Promises in JS by Oleksii Rudenko
- JavaScript Promises ... In Wicked Detail by Matt Greer
- How to Chain JavaScript Promises – Intro Tutorial to JavaScript Promises by Pablo Farias Navarro
- Native Javascript Promises vs Bluebird by Nazar Aziz
- Pure JS Promise (Native) by Stenly Tan
- Testing JavaScript's native Promises by Paul Meskers
- Promise Object (JavaScript) @ MSDN
- Promises Object @ JavaScript Kit
- Can I Use Promises? @ caniuse.com
- Hey Let's Learn About JavaScript Promises by Kevin Buchanan
- JavaScript Promises 101 by Ire Aderinokun
- Native Browser Promises In Javascript by Tomasz Maćkowiak
- Understanding JavaScript Promises, Pt. I: Background & Basics by Peleke Sengstacke
- Promise Objects - ECMAScript 2017 Language Specification
- The Simplest Thing Possible: Promises in JavaScript by John V. Petersen
- Learning ES6: Promises by Ben Ilegbodu
- TracedPromise: Visualizing Async JS Code by Ben Cronin
- On The Difficult Problem Of Logging Errors In Parallel Promises In JavaScript by Ben Nadel
- Easy asynchrony with ES6
- Staying Sane With Asynchronous Programming: Promises and Generators by Colin Toh
- Are JavaScript Promises swallowing your errors? by James K. Nelson
- ES6 Promises in Depth
- Promises – an alternative way to approach asynchronous JavaScript by Kishore Nallan
- Javascript Promises by Samy Pessé
- Better Asynchronous JavaScript by Francois Ward
- Good Code: Promises in JavaScript by Cecelia Wren
- Patterns for Asynchronous Programming With Promises
- Keeping our Promises (and Callbacks) by Thomas Bouldin
- Replacing async utilities with native promises by Jelle Kralt
- A Solution To Swallowed Exceptions In ES6’s Promises
- 8 Tips For Mastering Javascript Promises by Scott Rippey
- The best resources to learn about JavaScript Promises
- Native Promise versus jQuery Deferred by Adam Boduch @ jsfiddle
- Working With Javascript Promises: Practices And Mistakes @ by Adrian Oprea
YouTube videos
- How to Use Javascript Promises by Jordan Leigh
- JavaScript promises explained tutorial by techsmith
- Promises - Part 8 of Functional Programming in JavaScript
- Promises in Javascript by David M. Lee, II
- Cleaning Up JavaScript Callbacks With Promises
- Async JavaScript with Promises by Kyle Robinson Young