Gathering detailed insights and metrics for @applitools/isomorphic-fetch
Gathering detailed insights and metrics for @applitools/isomorphic-fetch
Gathering detailed insights and metrics for @applitools/isomorphic-fetch
Gathering detailed insights and metrics for @applitools/isomorphic-fetch
Isomorphic WHATWG Fetch API, for Node & Browserify
npm install @applitools/isomorphic-fetch
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
89 Commits
4 Watching
8 Branches
1 Contributors
Updated on 02 Jan 2019
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-14.7%
1,798
Compared to previous day
Last week
-3%
11,775
Compared to previous week
Last month
4.3%
51,022
Compared to previous month
Last year
-67.3%
1,986,846
Compared to previous year
2
7
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.For ease-of-maintenance and backward-compatibility reasons, this library will always be a polyfill. As a "safe" alternative, which does not modify the global, consider fetch-ponyfill.
1npm install --save isomorphic-fetch es6-promise
1bower install --save isomorphic-fetch es6-promise
1require('es6-promise').polyfill(); 2require('isomorphic-fetch'); 3 4fetch('//offline-news-api.herokuapp.com/stories') 5 .then(function(response) { 6 if (response.status >= 400) { 7 throw new Error("Bad response from server"); 8 } 9 return response.json(); 10 }) 11 .then(function(stories) { 12 console.log(stories); 13 });
All open source code released by FT Labs is licenced under the MIT licence. Based on the fine work by jxck.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
16 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More