Gathering detailed insights and metrics for isomorphic-unfetch
Gathering detailed insights and metrics for isomorphic-unfetch
Gathering detailed insights and metrics for isomorphic-unfetch
Gathering detailed insights and metrics for isomorphic-unfetch
@plasmicapp/isomorphic-unfetch
Switches between unfetch & node-fetch for client & server.
isomorphic-unfetch-api-service
isomorphic-unfetch decorator
@yagopv/isomorphic-unfetch
Switches between unfetch & node-fetch for client & server.
@pure-model/isomorphic-unfetch
Switches between unfetch & node-fetch for client & server.
npm install isomorphic-unfetch
Typescript
Module System
Node Version
NPM Version
JavaScript (86.19%)
TypeScript (13.81%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
5,718 Stars
229 Commits
202 Forks
40 Watchers
2 Branches
35 Contributors
Updated on Jul 10, 2025
Latest Version
4.0.2
Package Id
isomorphic-unfetch@4.0.2
Unpacked Size
3.30 kB
Size
1.44 kB
File Count
7
NPM Version
8.19.2
Node Version
18.12.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
Switches between unfetch & node-fetch for client & server.
This project uses node and npm. Go check them out if you don't have them locally installed.
Note: This module uses node-fetch 3.x, which is ES Module and requires Node >= 12.20.0.
1$ npm i isomorphic-unfetch
Then with a module bundler like rollup or webpack, use as you would anything else:
1// using ES6 modules 2import fetch from "isomorphic-unfetch"; 3 4// using CommonJS modules 5const fetch = require("isomorphic-unfetch");
As a ponyfill:
1import fetch from "isomorphic-unfetch"; 2 3fetch("/foo.json") 4 .then((r) => r.json()) 5 .then((data) => { 6 console.log(data); 7 });
Globally, as a polyfill:
1import "isomorphic-unfetch"; 2 3// "fetch" is now installed globally if it wasn't already available 4 5fetch("/foo.json") 6 .then((r) => r.json()) 7 .then((data) => { 8 console.log(data); 9 });
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/20 approved changesets -- score normalized to 3
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
15 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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