UNPKG

10.5 kBMarkdownView Raw
1<a href="https://promisesaplus.com/"><img src="https://promisesaplus.com/assets/logo-small.png" align="right" /></a>
2# promise
3
4This is a simple implementation of Promises. It is a super set of ES6 Promises designed to have readable, performant code and to provide just the extensions that are absolutely necessary for using promises today.
5
6For detailed tutorials on its use, see www.promisejs.org
7
8**N.B.** This promise exposes internals via underscore (`_`) prefixed properties. If you use these, your code will break with each new release.
9
10[![travis][travis-image]][travis-url]
11[![dep][dep-image]][dep-url]
12[![npm][npm-image]][npm-url]
13[![downloads][downloads-image]][downloads-url]
14
15[travis-image]: https://img.shields.io/travis/then/promise.svg?style=flat
16[travis-url]: https://travis-ci.org/then/promise
17[dep-image]: https://img.shields.io/david/then/promise.svg?style=flat
18[dep-url]: https://david-dm.org/then/promise
19[npm-image]: https://img.shields.io/npm/v/promise.svg?style=flat
20[npm-url]: https://npmjs.org/package/promise
21[downloads-image]: https://img.shields.io/npm/dm/promise.svg?style=flat
22[downloads-url]: https://npmjs.org/package/promise
23
24## Installation
25
26**Server:**
27
28 $ npm install promise
29
30**Client:**
31
32You can use browserify on the client, or use the pre-compiled script that acts as a polyfill.
33
34```html
35<script src="https://www.promisejs.org/polyfills/promise-6.1.0.js"></script>
36```
37
38Note that the [es5-shim](https://github.com/es-shims/es5-shim) must be loaded before this library to support browsers pre IE9.
39
40```html
41<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-shim.min.js"></script>
42```
43
44## Usage
45
46The example below shows how you can load the promise library (in a way that works on both client and server using node or browserify). It then demonstrates creating a promise from scratch. You simply call `new Promise(fn)`. There is a complete specification for what is returned by this method in [Promises/A+](http://promises-aplus.github.com/promises-spec/).
47
48```javascript
49var Promise = require('promise');
50
51var promise = new Promise(function (resolve, reject) {
52 get('http://www.google.com', function (err, res) {
53 if (err) reject(err);
54 else resolve(res);
55 });
56});
57```
58
59If you need [domains](https://nodejs.org/api/domain.html) support, you should instead use:
60
61```js
62var Promise = require('promise/domains');
63```
64
65If you are in an environment that implements `setImmediate` and don't want the optimisations provided by asap, you can use:
66
67```js
68var Promise = require('promise/setimmediate');
69```
70
71If you only want part of the features, e.g. just a pure ES6 polyfill:
72
73```js
74var Promise = require('promise/lib/es6-extensions');
75// or require('promise/domains/es6-extensions');
76// or require('promise/setimmediate/es6-extensions');
77```
78
79## Unhandled Rejections
80
81By default, promises silence any unhandled rejections.
82
83You can enable logging of unhandled ReferenceErrors and TypeErrors via:
84
85```js
86require('promise/lib/rejection-tracking').enable();
87```
88
89Due to the performance cost, you should only do this during development.
90
91You can enable logging of all unhandled rejections if you need to debug an exception you think is being swallowed by promises:
92
93```js
94require('promise/lib/rejection-tracking').enable(
95 {allRejections: true}
96);
97```
98
99Due to the high probability of false positives, I only recommend using this when debugging specific issues that you think may be being swallowed. For the preferred debugging method, see `Promise#done(onFulfilled, onRejected)`.
100
101`rejection-tracking.enable(options)` takes the following options:
102
103 - allRejections (`boolean`) - track all exceptions, not just reference errors and type errors. Note that this has a high probability of resulting in false positives if your code loads data optimistically
104 - whitelist (`Array<ErrorConstructor>`) - this defaults to `[ReferenceError, TypeError]` but you can override it with your own list of error constructors to track.
105 - `onUnhandled(id, error)` and `onHandled(id, error)` - you can use these to provide your own customised display for errors. Note that if possible you should indicate that the error was a false positive if `onHandled` is called. `onHandled` is only called if `onUnhandled` has already been called.
106
107To reduce the chance of false-positives there is a delay of up to 2 seconds before errors are logged. This means that if you attach an error handler within 2 seconds, it won't be logged as a false positive. ReferenceErrors and TypeErrors are only subject to a 100ms delay due to the higher likelihood that the error is due to programmer error.
108
109## API
110
111Detailed API reference docs are available at https://www.promisejs.org/api/.
112
113Before all examples, you will need:
114
115```js
116var Promise = require('promise');
117```
118
119### new Promise(resolver)
120
121This creates and returns a new promise. `resolver` must be a function. The `resolver` function is passed two arguments:
122
123 1. `resolve` should be called with a single argument. If it is called with a non-promise value then the promise is fulfilled with that value. If it is called with a promise (A) then the returned promise takes on the state of that new promise (A).
124 2. `reject` should be called with a single argument. The returned promise will be rejected with that argument.
125
126### Static Functions
127
128 These methods are invoked by calling `Promise.methodName`.
129
130#### Promise.resolve(value)
131
132(deprecated aliases: `Promise.from(value)`, `Promise.cast(value)`)
133
134Converts values and foreign promises into Promises/A+ promises. If you pass it a value then it returns a Promise for that value. If you pass it something that is close to a promise (such as a jQuery attempt at a promise) it returns a Promise that takes on the state of `value` (rejected or fulfilled).
135
136#### Promise.reject(value)
137
138Returns a rejected promise with the given value.
139
140#### Promise.all(array)
141
142Returns a promise for an array. If it is called with a single argument that `Array.isArray` then this returns a promise for a copy of that array with any promises replaced by their fulfilled values. e.g.
143
144```js
145Promise.all([Promise.resolve('a'), 'b', Promise.resolve('c')])
146 .then(function (res) {
147 assert(res[0] === 'a')
148 assert(res[1] === 'b')
149 assert(res[2] === 'c')
150 })
151```
152
153#### Promise.race(array)
154
155Returns a promise that resolves or rejects with the result of the first promise to resolve/reject, e.g.
156```js
157var rejected = Promise.reject(new Error('Whatever'));
158var fulfilled = new Promise(function (resolve) {
159 setTimeout(() => resolve('success'), 500);
160});
161
162var race = Promise.race([rejected, fulfilled]);
163// => immediately rejected with `new Error('Whatever')`
164
165var success = Promise.resolve('immediate success');
166var first = Promise.race([success, fulfilled]);
167// => immediately succeeds with `immediate success`
168```
169
170#### Promise.denodeify(fn)
171
172_Non Standard_
173
174Takes a function which accepts a node style callback and returns a new function that returns a promise instead.
175
176e.g.
177
178```javascript
179var fs = require('fs')
180
181var read = Promise.denodeify(fs.readFile)
182var write = Promise.denodeify(fs.writeFile)
183
184var p = read('foo.json', 'utf8')
185 .then(function (str) {
186 return write('foo.json', JSON.stringify(JSON.parse(str), null, ' '), 'utf8')
187 })
188```
189
190#### Promise.nodeify(fn)
191
192_Non Standard_
193
194The twin to `denodeify` is useful when you want to export an API that can be used by people who haven't learnt about the brilliance of promises yet.
195
196```javascript
197module.exports = Promise.nodeify(awesomeAPI)
198function awesomeAPI(a, b) {
199 return download(a, b)
200}
201```
202
203If the last argument passed to `module.exports` is a function, then it will be treated like a node.js callback and not parsed on to the child function, otherwise the API will just return a promise.
204
205### Prototype Methods
206
207These methods are invoked on a promise instance by calling `myPromise.methodName`
208
209### Promise#then(onFulfilled, onRejected)
210
211This method follows the [Promises/A+ spec](http://promises-aplus.github.io/promises-spec/). It explains things very clearly so I recommend you read it.
212
213Either `onFulfilled` or `onRejected` will be called and they will not be called more than once. They will be passed a single argument and will always be called asynchronously (in the next turn of the event loop).
214
215If the promise is fulfilled then `onFulfilled` is called. If the promise is rejected then `onRejected` is called.
216
217The call to `.then` also returns a promise. If the handler that is called returns a promise, the promise returned by `.then` takes on the state of that returned promise. If the handler that is called returns a value that is not a promise, the promise returned by `.then` will be fulfilled with that value. If the handler that is called throws an exception then the promise returned by `.then` is rejected with that exception.
218
219#### Promise#catch(onRejected)
220
221Sugar for `Promise#then(null, onRejected)`, to mirror `catch` in synchronous code.
222
223#### Promise#done(onFulfilled, onRejected)
224
225_Non Standard_
226
227The same semantics as `.then` except that it does not return a promise and any exceptions are re-thrown so that they can be logged (crashing the application in non-browser environments)
228
229#### Promise#nodeify(callback)
230
231_Non Standard_
232
233If `callback` is `null` or `undefined` it just returns `this`. If `callback` is a function it is called with rejection reason as the first argument and result as the second argument (as per the node.js convention).
234
235This lets you write API functions that look like:
236
237```javascript
238function awesomeAPI(foo, bar, callback) {
239 return internalAPI(foo, bar)
240 .then(parseResult)
241 .then(null, retryErrors)
242 .nodeify(callback)
243}
244```
245
246People who use typical node.js style callbacks will be able to just pass a callback and get the expected behavior. The enlightened people can not pass a callback and will get awesome promises.
247
248## Enterprise Support
249
250Available as part of the Tidelift Subscription
251
252The maintainers of promise and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-promise?utm_source=npm-promise&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
253
254## License
255
256 MIT