superagent 9.0.0 → 9.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,7 +83,7 @@ Browser-ready versions of this module are available via [jsdelivr][], [unpkg][],
|
|
|
83
83
|
This is the solution for you if you're just using `<script>` tags everywhere!
|
|
84
84
|
|
|
85
85
|
```html
|
|
86
|
-
<script src="https://
|
|
86
|
+
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=WeakRef,BigInt"></script>
|
|
87
87
|
<script src="https://cdn.jsdelivr.net/npm/superagent"></script>
|
|
88
88
|
<!-- if you wish to use unpkg.com instead: -->
|
|
89
89
|
<!-- <script src="https://unpkg.com/superagent"></script> -->
|
|
@@ -155,10 +155,10 @@ If you are using [browserify][], [webpack][], [rollup][], or another bundler, th
|
|
|
155
155
|
|
|
156
156
|
### Required Browser Features
|
|
157
157
|
|
|
158
|
-
We recommend using <https://polyfill
|
|
158
|
+
We recommend using <https://cdnjs.cloudflare.com/polyfill/> (specifically with the bundle mentioned in [VanillaJS](#vanillajs) above):
|
|
159
159
|
|
|
160
160
|
```html
|
|
161
|
-
<script src="https://
|
|
161
|
+
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=WeakRef,BigInt"></script>
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
* WeakRef is not supported in Opera 85, iOS Safari 12.2-12.5
|
|
@@ -201,6 +201,8 @@ Existing plugins:
|
|
|
201
201
|
* [superagent-verbose-errors](https://github.com/jcoreio/superagent-verbose-errors) - include response body in error messages for failed requests
|
|
202
202
|
* [superagent-declare](https://github.com/damoclark/superagent-declare) - A simple [declarative](https://en.wikipedia.org/wiki/Declarative_programming) API for SuperAgent
|
|
203
203
|
* [superagent-node-http-timings](https://github.com/webuniverseio/superagent-node-http-timings) - measure http timings in node.js
|
|
204
|
+
* [superagent-cheerio](https://github.com/mmmmmrob/superagent-cheerio) - add [cheerio](https://www.npmjs.com/package/cheerio) to your response content automatically. Adds `res.$` for HTML and XML response bodies.
|
|
205
|
+
* [@certible/superagent-aws-sign](https://github.com/certible/superagent-aws-sign) - Sign AWS endpoint requests, it uses the aws4 to authenticate the SuperAgent requests
|
|
204
206
|
|
|
205
207
|
Please prefix your plugin with `superagent-*` so that it can easily be found by others.
|
|
206
208
|
|
package/package.json
CHANGED