Is there native support for promises in current versions of Node.js?
Node.js uses the V8 engine. This JavaScript engine is also used by Chrome, and Chrome 32 has na
I know it has been quite a long time since OP made this post, but I wanted to update those that are still managing to find this question through search.
Node.js added native support for Promises since it merged with io.js. This happened on September 8, 2015 (as per this news post on the official Node.js site) with the first stable release of Node v4.0.0.
A host of new ES6 features, such as Promises, were added with version 4. You can read more about them here.
EDIT: Of note, it appears as though Bluebird's Promise performs better than the native implementation of Promise.
Although promises are not natively in node.js (yet). The IO.js fork of node.js has them natively. See: http://davidwalsh.name/es6-io