Why and How to Deal with Unhandled Promise Rejections
If you use Node 6.6+ you may have seen “Unhandled promise rejections are deprecated” cropping up. What does it mean and why does it matter? - https://goo.gl/D0a0Ok
#nodejs #promise
If you use Node 6.6+ you may have seen “Unhandled promise rejections are deprecated” cropping up. What does it mean and why does it matter? - https://goo.gl/D0a0Ok
#nodejs #promise
The Code Barbarian
Unhandled Promise Rejections in Node.js
Techniques for Passing Data Between Promise Callbacks
Some approaches for sharing data between callbacks (which each have their own scope). - https://goo.gl/xER4QR
#promise
Some approaches for sharing data between callbacks (which each have their own scope). - https://goo.gl/xER4QR
#promise
2ality
Passing data between Promise callbacks
In Promise-based code, there are usually many callbacks, each one having a separate scope for variables. What if you want to share data between those callbacks? This blog post describes techniques for doing so.
Learn Promises by Building Your Own
Learning by building in action in this step-by-step tutorial to help you understand how Promises work. - https://goo.gl/6wcKm7
#javascript #promise
Learning by building in action in this step-by-step tutorial to help you understand how Promises work. - https://goo.gl/6wcKm7
#javascript #promise
Medium
Learn JavaScript Promises by Building a Promise from Scratch
A step-by-step tutorial to make sure you fully understand how Promises work
A JavaScript’s Promise That Leaks Memory (and Why)
What you can do about memory leaks in recursive loops. - https://goo.gl/92p4aX
#promise
What you can do about memory leaks in recursive loops. - https://goo.gl/92p4aX
#promise
alexn.org
JavaScript's Promise Leaks Memory
JavaScript's Promise leaks memory in recursive loops and what you can do about it.
Using Promise.prototype.finally in Node
Promise.prototype.finally() will be arriving in ECMAScript (and therefore Node) soon - what can we use it for, and how could we implement a polyfill for the time being? - https://goo.gl/eE9vzk
#nodejs #promise
Promise.prototype.finally() will be arriving in ECMAScript (and therefore Node) soon - what can we use it for, and how could we implement a polyfill for the time being? - https://goo.gl/eE9vzk
#nodejs #promise
The Code Barbarian
Using Promise.prototype.finally in Node.js
Faster Async Functions and Promises for V8
A substantial and easy-to-follow exploration of how async functions and promises in V8 have been optimized and how the debugging experience for async code has been improved. - http://bit.ly/2DGcGaS
#v8 #async #promise
A substantial and easy-to-follow exploration of how async functions and promises in V8 have been optimized and how the debugging experience for async code has been improved. - http://bit.ly/2DGcGaS
#v8 #async #promise
v8.dev
Faster async functions and promises · V8
Faster and easier-to-debug async functions and promises are coming to V8 v7.2 / Chrome 72.