lukeed / taskr

A fast, concurrency-focused task automation tool.
MIT License
2.53k stars 75 forks source link

Consider moving from bluebird to any-promise #275

Closed karimsa closed 7 years ago

karimsa commented 7 years ago

With the consideration of performance, perhaps fly should use any-promise instead of bluebird? That way the natively available promise implementation can be used instead of bluebird when available (since the modern versions of node provide that).

jorgebucaran commented 7 years ago

@karimsa Yes, that's on the long-term agenda! For now, Bluebird has superior performance.

See here for more info:

This is not going to be the story forever, so I'll be happy to get rid of bluebird when the time is right! 👍

karimsa commented 7 years ago

Thanks for the clarification! The choice to use bluebird makes more sense now.

lukeed commented 7 years ago

Yo! Closing this since Bluebird is here to stay until native-Node can match it (or within reason).

Thanks!