@financial-times/o-fetch-jsonp
v2.3.0
Published
**o-fetch-jsonp is deprecated. Use the `fetch` [polyfill](http://polyfill.io/) and [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) instead.**
Downloads
1,428
Readme
o-fetch-jsonp is deprecated. Use the fetch
polyfill and Cross-Origin Resource Sharing instead.
o-fetch-jsonp
Client side fetch wrapper that fallbacks to JSONP
Client
Uses fetch, but fallbacks to a fetch
-like interface using JSONP under the hood
Install
bower install -S o-fetch-jsonp
Usage
import fetchJsonp from 'o-fetch-jsonp';
const opts = {
timeout: 1000
};
fetchJsonp('http://other.domain.com/foo', opts)
.then(data => {
...
});
Note: If using CommonJS modules,
const fetchJsonp = require('o-fetch-jsonp').default;
Where opts
can take
{number} [timeout=2000]