spion / promise-streams

A collection of node.js streams that work well with promises (through, map, reduce, etc...)
93 stars 11 forks source link

Use any-promise instead of bluebird #11

Closed RangerMauve closed 8 years ago

RangerMauve commented 8 years ago

It'd be handy to not be forced to use bluebird to use promises with streams. For instance, in the cases where just the native promise implementation would be enough, or if people were already using a different promise library.

any-promise automagically detects what promise configuration your library user wants to use.

petkaantonov commented 8 years ago

The code is using methods that are only in bluebird

RangerMauve commented 8 years ago

Ah. Makes sense.