
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fetch-video
Advanced tools
fetching (downloading) video by uri, using wget or hls-fetch for .m3u8 to specified outfile
m3u8 HLS Stream or video file url downloading to mp4 file with autodetect of url type
npm i fetch-video
const { download } = require('fetch-video');
const downloader = download(url, filename, requestOptions);
downloader.on('progress', progress => console.log(`Current progress ${progress}`));
downloader.on('speed', speed => console.log(`Current speed ${speed}`));
downloader.on('stats', console.log.bind(console));
downloader.go() // Promise returned
.then(() => console.log(`video stream or file ${url} is downloaded and stored as the ${filename}`));
url, filename, requestOptions) => downloaderurl - url of your video file or m3u8 playlist
filename - filename path to which you want save the video. Can be stream.
If undefined - then dev-null stream used.
requestOptions - request options
Launches downloading and Promise being resolved on finish.
Immediately aborts downloading
Subscribe for event. Currently it supports two events:
progress => sending progress percents as payloadspeed => sending current speed in bytes per second as payloadstats => sending full stats about progresslastSegmentStats => stats about time, size and speed of last segmentresponse => time elapased between request started and headers gotFAQs
fetching (downloading) video by uri, using wget or hls-fetch for .m3u8 to specified outfile
We found that fetch-video demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.