最佳答案
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 native support for promises. But I can't seem to get promises to work (natively) in Node.js.
I've tried the following code in Chrome 32 and it works.
var promise = new Promise(function(resolve, reject) {
// do a thing, possibly async, then…
if ( 1===1 /* everything turned out fine */) {
resolve("Stuff worked!");
}
else {
reject(Error("It broke"));
}
});
promise.then(function( message ) {
console.log( message );
},
function( err ) {
console.log( err );
});
However, when I try this same code in Node.js, I get:
var promise = new Promise(function(resolve, reject) {
^
ReferenceError: Promise is not defined
This code is from the excellent tutorial: