2.3.0 • Published 4 years ago

@financial-times/o-fetch-jsonp v2.3.0

Weekly downloads
458
License
-
Repository
github
Last release
4 years ago

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]
2.3.0

4 years ago

2.2.0

5 years ago

2.1.1

5 years ago

2.1.0

5 years ago