|
|
hace 3 años | |
|---|---|---|
| .. | ||
| test | hace 3 años | |
| .editorconfig | hace 3 años | |
| .jshintrc | hace 3 años | |
| .npmignore | hace 3 años | |
| .travis.yml | hace 3 años | |
| LICENSE | hace 3 años | |
| README.md | hace 3 años | |
| bower.json | hace 3 años | |
| fetch-bower.js | hace 3 años | |
| fetch-npm-browserify.js | hace 3 años | |
| fetch-npm-node.js | hace 3 años | |
| package.json | hace 3 años | |
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.