Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
node-promise
Advanced tools
Kris Zyp's implementation of promises with added features, maintained as an npm package.
MIT License.
The node-promise project provides a complete promise implementation. Promises provide a clean separation of concerns between asynchronous behavior and the interface so asynchronous functions can be called without callbacks, and callback interaction can be done on the generic promise interface. The node-promise package provides just a promise implementation, however, https://github.com/kriszyp/promised-io is recommended for more complete promise-based IO functionality. The promised-io includes the promise implementation from node-promise, as well as wrappers around Node's filesystem and other system I/O APIs for consistent promise-based interaction.
The node-promise module features a promise implementation with:
Utility functions, including:
Much of this is adapted from Tyler Close's ref_send and Kris Kowal's work on promises.
Some quick examples from test-promise.js (again, it is recommended that you use http://github.com/kriszyp/promised-io for file and other I/O interaction): util = require('util'); var fs = require('./fs-promise');
// open a file and read it
fs.open("fs-promise.js", process.O_RDONLY).then(function(fd){
return fs.read(fd, 4096);
}).then(function(args){
util.puts(args[0]); // print the contents of the file
});
// does the same thing
fs.readFile("fs-promise.js").addCallback(util.puts);
A default Promise constructor can be used to create a self-resolving deferred/promise:
var Promise = require("node-promise").Promise;
var promise = new Promise();
asyncOperation(function(){
promise.resolve("succesful result");
});
promise -> given to the consumer
A consumer can use the promise:
promise.then(function(result){
... when the action is complete this is executed ...
},
function(error){
... executed when the promise fails
});
Alternately, a provider can create a deferred and resolve it when it completes an action. The deferred object a promise object that provides a separation of consumer and producer to protect promises from being fulfilled by untrusted code.
var defer = require("node-promise").defer;
var deferred = defer();
asyncOperation(function(){
deferred.resolve("succesful result");
});
deferred.promise -> given to the consumer
Another way that a consumer can use promises:
var when = require("node-promise").when;
when(promise,function(result){
... when the action is complete this is executed ...
},
function(error){
... executed when the promise fails
});
More examples:
function printFirstAndLast(itemsDeferred){
findFirst(itemsDeferred).then(util.puts);
findLast(itemsDeferred).then(util.puts);
}
function findFirst(itemsDeferred){
return itemsDeferred.then(function(items){
return items[0];
});
}
function findLast(itemsDeferred){
return itemsDeferred.then(function(items){
return items[items.length];
});
}
And now you can do:
printFirstAndLast(someAsyncFunction());
The workhorse function of this library is the "when" function, which provides a means for normalizing interaction with values and functions that may be a normal synchronous value, or may be a promise (asynchronously fulfilled). The when() function takes a value that may be a promise or a normal value for the first function, and when the value is ready executes the function provided as the second argument (immediately in the case of a non-promise normal value). The value returned from when() is the result of the execution of the provided function, and returns a promise if provided a promise or synchronously returns a normal value if provided a non-promise value. This makes it easy to "chain" computations together. This allows us to write code that is agnostic to sync/async interfaces:
var when = require("node-promise").when;
function printFirstAndLast(items){
// print the first and last item
when(findFirst(items), util.puts);
when(findLast(items), util.puts);
}
function findFirst(items){
// return the first item
return when(items, function(items){
return items[0];
});
}
function findLast(items){
// return the last item
return when(items, function(items){
return items[items.length - 1];
});
}
Now we can do:
> printFirstAndLast([1,2,3,4,5]);
1
5
And we can also provide asynchronous promise:
var promise = new process.Promise();
> printFirstAndLast(promise);
(nothing printed yet)
> promise.emitSuccess([2,4,6,8,10]);
2
10
The "all" function is intended to provide a means for waiting for the completion of an array of promises. The "all" function should be passed an array of promises, and it returns an promise that is fulfilled once all the promises in the array are fulfilled. The returned promise's resolved value will be an array with the resolved values of all of the promises in the passed in array.
The "first" function is intended to provide a means for waiting for the completion of the first promise in an array of promises to be fulfilled. The "first" function should be passed an array of promises, and it returns an promise that is fulfilled once the first promise in the array is fulfilled. The returned promise's resolved value will be the resolved value of the first fulfilled promise.
FAQs
Kris Zyp's implementation of promises with added features, maintained as an npm package.
The npm package node-promise receives a total of 4,916 weekly downloads. As such, node-promise popularity was classified as popular.
We found that node-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.