Promish
SH IP R O M
The Promish module creates a wrapper around the EcmaScript 6 Promise class (and others). It adds some of the useful features found in many of the other popular promise libraries such as Q and Bluebird. It is designed to be interchangeable with the ES6 Promise as its interface is a superset of the Promise class.
I have strived to keep this library as small as practicable while offering as much functionality as possible. As it stands, the minified browserified bundle is less than 14k!
Installation
npm install promish
New Features!
-
Browserification
- The Promish class has been reworked to allow the base-promise class it extends to be injected so that a browser friendly promise can be used for the browserify build. The implementation I am using for this is es6-promise.
- The standard Promish implementation (via require('promish') has not been affected and will still deliver a Promish class that extends the native Promise.
- See Browserification for details.
-
map
- map takes an array of values or promises and calls a supplied callback function on each resolved value finally resolving in an array of values
-
reduce
- reduce takes an array of values or promises and calls a supplied callback function on each resolved value in a sequential fashion resolving to a single value
Contents
Interface
Include
var Promish = ;
Instantiation
Typical use - construct with handler function
var promise = { // do something async};
3rd Party Wrapper Mode
var promise = ; var promise = ... ;
Value Wrapper Mode
// If the constructor value is not a function, a thenable or an Error,// assume it should be a resolve value.var promise = 'Resolve Value'; // To explicitly signal resolve, use Promish.resolvevar promise = Promish;
Error Wrapper Mode
// If the constructor value is an Error type, it will be interpreted as rejectionvar promise = 'This promise is rejected'; // To explicitly signal something is rejection use Promish.rejectvar promise = Promish
Then
// typical usepromise ; // with onRejected...promise;
Catch
The catch function takes a catch handler that will be called when the promise state is rejected and is a more elegant way to handle errors than using the second then argument.
// catch allpromise ;
Promishes also support Error type matching
{ ; } ;
And also support user supplied error match functions
{ return typeof value === 'string' && value >= 0;} promise ;
Finally
A finally handler will be called no matter what state the promise chain gets into. There are no arguments provided to the finally handler and the downstream promise state will typically reflect the state of the promise before the finally handler is called. If the finally handler returns a promise, finally will wait for the promise to resolve before propagating the incoming promise value. If the finally handler's promise is rejected, the new rejected state will override the incoming promise state and the new state will take on the new rejection state of the finally handler's promise. This will also be the case if the finally handler throws an exception.
// catch allpromise
Delay
Pause for a number of milliseconds and then continue. The resolve value will be preserved. If the promish state is rejected, delay will not delay and will preserve the rejection error
;
Defer
For compatability with the old Promise.defer() pattern...
{ var deferred = Promishdefer; fs; return deferredpromise;}
Promisification Calls
The majority of the old asynchronous Node methods follow a basic pattern where the last argument in a function is a callback function and the first argument of that callback function is used to signal errors - if the error argument is truthy, then the call failed and the value of the error will indicate why, otherwise the call succeeded.
Promisification involves converting the async pattern into promises - either on the fly or by wrapping functions, methods or even whole objects...
Apply
// Note: Promish.nfapply alias included for Q compatabilityPromish ;
Call
// Note: Promish.nfcall alias included for Q compatabilityPromish ;
Post
// call method of target with arguments inline// Note: Promish.npost aliasPromish ;
Invoke
// invoke method of target with array of arguments// Note: Promish.ninvoke aliasPromish ;
Promisify
Convert a function from async to promise for future use.
var readFile = Promish;
Promisify All
Promisify all the async methods of an object.
There are two modes supported:
- Proxy Mode (default)
- Creates a separate object that contains promisified methods for each method of the target object. The methods typically have the same name
- Note: ES6 Proxies eagerly awaited here!
- In-Place Mode
- Adds promisified methods to the object, typically with a suffix to avoid colliding with the actual methods.
// Proxy mode:var fs = Promish;fs ; // In-Place Modevar fs = Promish;fs ;
Method
Wrap a synchronous function or method so that it always returns a promise
var myFunc = Promishmethod { // can throw if !value throw 'Not zero!'; // can return value if value > 0 return value; // can return promish() return Promish;}; ; // also works as member functionsMyClassprototypefunc = Promishmethod { // this is what you think it is return thisvalue = value;}; 7func ;
All
Promish wraps the native implementation of all.
Promishall ;
Race
Promish wraps the native implementation of race.
Promish ;
Some
Resolve on first N successful promises or reject with array of errors.
Promish ;
Any
Resolve on first successful promise or reject with array of errors.
Promish ;
Spread
Convert a resolve value array into arguments
Promishall ;
Spread will also convert an array of promises into their resolved values
{ } ;
Map
Process an array of values or promises using supplied callback and resolving with an array of processed values.
{ return value * 2;}// static versionPromish ; // inline versionPromish ;
Reduce
Process an array of values or promises using supplied callback and resolving with a single accumulated values. The callback is called with arguments of accumulator and resolved value and returns a value or promise which will be resolved to become the next accuumulator value. For further reading on reduce, please consult documentation for Array reduce();
{ return total + value;} // static versionPromish ; // inline versionPromish ;
Browserification
Promish is now also built for browserification both as a standalone bundle and as a module suitable for inclusion into your own browserify build.
dist/promish-bundle
A browserified bundle is included as dist/promish-bundle.js (or dist/promish-bundle.min.js). The bundle uses (and includes) the es6-promise module in order to produce a browser friendly bundle.
dist/promish-node
For node projects that still require older versions of JavaScript (or for including in a different browser bundle), a node friendly module has also been included. To use, add the following code:
var Promish = ;
Note that promish-node makes use of ES6 features like Array.from that are not covered by the babel transpile. If you need to use promish in a completely ES2015 environment you will need to include some kind of compatable polyfill:
// polyfill ES6 features;
Known Issues
- TBD
Release History
Version | Changes |
---|---|
0.0.1 |
|
0.0.2 | |
0.0.3 | |
0.0.4 | |
0.0.5 | |
0.0.6 |
|
4.2.2 |
|
4.2.3 |
|
4.2.4 |
|
4.2.5 |
|
4.2.8 |
|