Questions tagged [promises]

A promise is essentially an API that returns a future value, or a way to manage callback functions. More technically, a promise is a programming pattern that helps invoking a mechanism that is going to be asynchronous in nature.

See the definition for "promise" on stackoverflow.com which is quite good, verbose and comprehensive.

26 questions
1
vote
2 answers

How to check for dangling Promises? (Bluebird.js)

I ran into an issue where I forgot to resolve my promise, leaving the remainder of the chain waiting (Forever). Thankfully in my case I was able to track down the issue in only 10 or so minutes, but I could see this being a really big pain in the…
JasonS
  • 193
  • 6