Recently I've had some free time (well, not complete true--more like I've made some free time) to look into the NodeBB source and plugin system. When I first started a NodeBB forum about a year ago, I hacked together a little plugin that was ok for v0.5.x, but now it's time to upgrade to v0.8.x.
Anyway, last night I was looking through some of the other plugins and even the NodeBB source..and I'm curious why the developers decided to use callbacks and heavily rely on the async library instead of using promises and a library like Bluebird or Q? I'm sure it is relative to the perspective of the developer, but those I have met agree that promises are neater to write and easier to read than callbacks. I definitely think they are easier for tracking errors because instead of keeping track of that pesky error parameter in every callback, you just have a .catch()
at the end of your chain.
I'm not blatantly suggesting a rewrite of the source, just genuinely curious why one approach was chosen over the other. And I like reading more of the history and culture that went into making NodeBB. 