
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
A fetch
-compatible wrapper around got for those times when you need to
fetch stuff over HTTP 😉
Why would you use this instead of got? Sometimes you might need a fetch
wrapper and this is it (e.g. Apollo uses fetch
to query remote schemas).
got
is a peer dependency so you will need to install it alongside got-fetch
:
$ npm install --save got got-fetch
If you use Typescript then you will also need @types/got
if you want your
project to build:
$ npm install --save-dev @types/got
The module exports a global instance ready to fetch resources:
const { fetch } = require('got-fetch');
fetch('https://example.com').then(resp => {
console.log(resp.status); // should be 200
resp.text().then(body => console.log(body)); // should be some HTML code
});
The module also exports a function which allows you to use your own custom
got
instance:
const got = require('got');
const { createFetch } = require('got-fetch');
const myGot = got.extend({
headers: {
'x-api-key': 'foo bar'
}
});
const fetch = createFetch(myGot);
// this request will send the header `x-api-key: foo bar`
fetch('https://example.com');
fetch
is designed for browser environments and this package is just a wrapper
around a Node-based HTTP client. Not all fetch
features are supported:
no-cors
, same-origin
, navigate
only-if-cached
error
, manual
default
) will use got's caching algorithm
(any other value will disable caching)See LICENSE for information.
FAQs
A fetch-compatible interface to the got HTTP client
The npm package got-fetch receives a total of 33,399 weekly downloads. As such, got-fetch popularity was classified as popular.
We found that got-fetch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.