You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `rp(...).then(...)` or e.g. `rp.post(...).then(...)` which turn `rp(...)` and `rp.post(...)` into promises
279
279
- `rp(...).catch(...)` or e.g. `rp.del(...).catch(...)` which is the same method as provided by Bluebird promises
280
+
- Errors that the `request` library would pass to the callback are wrapped by `request-promise` and then passed to the catch handler. See [code example](https://github.com/request/request-promise#thenonfulfilled-onrejected) below.
280
281
- `rp(...).finally(...)` or e.g. `rp.put(...).finally(...)` which is the same method as provided by Bluebird promises
281
282
- `rp(...).cancel()` or e.g. `rp.get(...).cancel()` which cancels the request
282
283
- `rp(...).promise()` or e.g. `rp.head(...).promise()` which returns the underlying promise so you can access the full [Bluebird API](https://github.com/petkaantonov/bluebird/blob/master/API.md)
Copy file name to clipboardexpand all lines: lib/rp.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ try {
18
18
/* istanbul ignore next */
19
19
varEOL=require('os').EOL;
20
20
/* istanbul ignore next */
21
-
console.error(EOL+'###'+EOL+'### The "request" library is not installed automatically anymore.'+EOL+'### But required by "request-promise".'+EOL+'###'+EOL+'### npm install request --save'+EOL+'###'+EOL);
21
+
console.error(EOL+'###'+EOL+'### The "request" library is not installed automatically anymore.'+EOL+'### But is a dependency of "request-promise".'+EOL+'### Please install it with:'+EOL+'### npm install request --save'+EOL+'###'+EOL);
0 commit comments