spmjs

spm@3.x

Brand new static package manager for browser.

Getting Started 󰅴 Packages

isomorphic-fetch


Isomorphic WHATWG Fetch API, for Node & Browserify

spm install isomorphic-fetch
Versions 2.2.1
Updated 7 years ago
Homepage https://github.com/matthew-andrews/isomorphic-fetch/issues
Repository git+https://github.com/matthew-andrews/isomorphic-fetch.git
Dependencies node-fetch, whatwg-fetch
Main fetch-npm-node.js
Owner

isomorphic-fetch Build Status

Fetch for node and Browserify. Built on top of GitHub's WHATWG Fetch polyfill.

Warnings

Installation

NPM

npm install --save isomorphic-fetch es6-promise

Bower

bower install --save isomorphic-fetch es6-promise

Usage

require('es6-promise').polyfill();
require('isomorphic-fetch');

fetch('//offline-news-api.herokuapp.com/stories')
    .then(function(response) {
        if (response.status >= 400) {
            throw new Error("Bad response from server");
        }
        return response.json();
    })
    .then(function(stories) {
        console.log(stories);
    });

License

All open source code released by FT Labs is licenced under the MIT licence. Based on the fine work by jxck.