JavaScript Promises
This cluster centers on debates about using Promises for asynchronous programming in JavaScript, including their limitations, comparisons to async/await, generators, and alternative libraries.
Activity Over Time
Top Contributors
Keywords
Sample Comments
What's the reasoning for using this over promise and/or async?
Promises returning promises (or async/await which is just sugar-coating for promises) solves this very cleanly in my experience
Promises are the backbone of async/await.
Didn't ES6 promise ;) to solve this?
It sounds like the author wants coroutines, not promises.
Is there something in particular that you do not like about Promises?
The Promises/A+ assumption that you'd never want a Promise to return a Promise is really shortsighted.
Why not just use the Promise API?
Why not use a Promise library instead?
Promises are the only real solution. https://github.com/kriskowal/q