Illia Kozyr c722a49f64 React Project DONE | пре 2 година | |
---|---|---|
.. | ||
test | пре 2 година | |
.editorconfig | пре 2 година | |
.jshintrc | пре 2 година | |
.npmignore | пре 2 година | |
.travis.yml | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
bower.json | пре 2 година | |
fetch-bower.js | пре 2 година | |
fetch-npm-browserify.js | пре 2 година | |
fetch-npm-node.js | пре 2 година | |
package.json | пре 2 година |
Fetch for node and Browserify. Built on top of GitHub's WHATWG Fetch polyfill.
fetch
as a global so that its API is consistent between client and server.npm install --save isomorphic-fetch es6-promise
bower install --save isomorphic-fetch es6-promise
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);
});
All open source code released by FT Labs is licenced under the MIT licence. Based on the fine work by jxck.