In other words, the following asynchronous code:
var d = Domain.create()
d.on("error", function (error) {
console.error("Error with the twitterverse:", error)
})
d.enter()
getTweetsFor("domenic")
.reduce(findMostMentioned, [])
.map(function (mostMentioned) {
return mostMentioned.map(function (user) { return user.username })
})
.toArray(function (mostMentionedNames) {
console.log("Most mentioned names:", mostMentionedNames)
})
d.exit()
parallels the synchronous code:
try {
var mostMentioned = findMostMentioned(getTweetsFor("domenic"))
var mostMentionedNames = mostMentioned.map(function (user) { return user.username })
console.log("Most mentioned names:", mostMentionedNames)
} catch (error) {
console.error("Error with the twitterverse: ", error)
}
Note in particular how errors flowed from any step in the process to our catch handler, without explicit by-hand bubbling code.
@briancavalier @domenic
https://github.com/Raynos/chain-stream#example
Streams + domains do all of that and much more.
domains allow you to handle error flow however you want very granularly and not just "the then promise rules" way.
Streams allow you to handle eventual data cleanly, especially when dealing with lazy streams.