
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
youtube-scrapper
Advanced tools
Download videos and get info on them aswell as searching and other features.
Simply use npm i youtube-scrapper
.
const scrapper = require("youtube-scrapper")
const { createWriteStream } = require("fs")
async function main() {
// Getting videos through query.
const result = await scrapper.search("best hits 2010")
console.log(result.videos.map(vid => vid.details.title)) // Array of videos mapped by name.
// Downloading first result and piping to a file.
// We have to get the full song info first.
const video = await scrapper.getVideoInfo(result.videos[0].id)
// Write to file.
scrapper
.downloadFromVideo(video)
.pipe(createWriteStream("./song.ogg"))
}
main()
FAQs
Download videos and get info on them aswell as searching and other features.
The npm package youtube-scrapper receives a total of 65 weekly downloads. As such, youtube-scrapper popularity was classified as not popular.
We found that youtube-scrapper 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.