
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
@ruhend/scraper
Advanced tools
scraper downloader tiktok ytmp3 ytmp4 Facebook instagram youtube search
Usage
π TIKTOK
const { ttdl } = require('@ruhend/scraper')
let { title, name, username, published, like, comment, share, views, bookmark, video, duration , profilePicture, audio, cover } = await ttdl('your tiktok url')
/*
here value of results
title,
name,
username,
published,
like,
comment,
share,
views,
bookmark,
video,
duration,
profilePicture,
audio,
cover
*/
π YTMP3 and YTMP3 V2 result is same title and link audio
const { ytmp3 } = require('@ruhend/scraper') //not recommend original from playback youtube speed download 32KBps ,
//instead { ytmp3v2 }
/**
* or if couldn't get u can catch to ytmp3v2
* const { ytmp3v2 } = require('@ruhend/scraper')
*/
const { title, audio } = await ytmp3v2('your youtube url')
audio : ${audio}
title : ${title}
π YTMP4
const { ytmp4 } = require('@ruhend/scraper')
const { title, video , quality, thumbnail, size } = await ytmp4('your youtube url')
video : ${video}
title : ${title}
quality : ${quality}
thumbnail : ${thumbnail}
size : ${size}
π FACEBOOK
const { fbdl } = require('@ruhend/scraper')
const { video } = await fbdl('your facebook url')
video : ${video}
π INSTAGRAM
const { igdl } = require('@ruhend/scraper')
const text = "link instagram" //https://instagram.com/xxxxxxx
let res = await igdl(text);
let data = await res.data;
console.log(res);
for (let media of data) {
await new Promise(resolve => setTimeout(resolve, 2000));
console.log(media.url)
/* media.url is or are link of videos or images that just one by one
* or do something with your project
*/
}
π YOUTUBE SEARCH
const { ytsearch } = require('@ruhend/scraper')
const text = "link youtube , title or something that u wanna search " //https://instagram.com/xxxxxxx
let { video, channel } = await ytsearch(text)
let teks = [...video, ...
channel
].map(v => {
switch (v.type) {
case 'video':
return `
${javi} *${v.title}*
${java} *${v.url}*
${java} Duration: ${v.durationH}
${java} Uploaded ${v.publishedTime}
${java} ${v.view} views`.trim()
case 'channel':
return `
βββββββββ’ *CHANNEL*
βπ *${v.channelName}*
βπ *${v.url}*
βπ _${v.subscriberH} Subscriber_
βπ₯ ${v.videoCount} video
βββββββββ’`.trim()
}
}).filter(v => v).join(
'\n\nβββββββββββββββββββββββββββ\n\n'
)
console.log(teks)
FAQs
scraper downloader tiktok ytmp3 ytmp4 Facebook instagram youtube search
The npm package @ruhend/scraper receives a total of 1 weekly downloads. As such, @ruhend/scraper popularity was classified as not popular.
We found that @ruhend/scraper 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
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.