![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ruhend-scraper
Advanced tools
Usage
🎗 TIKTOK
const { ttdl } = require('ruhend-scraper')
const url = 'https://vt.tiktok.com/xxxx'
let { title, author, username, published, like, comment, share, views, bookmark, video, cover, duration, music, profilePicture } = await ttdl(url);
or
let data = await ttdl(url)
console.log(data)
/*
results JSON
{ title, author, username, published, like, comment, share, views, bookmark, video, cover, duration, music, profilePicture }
*/
🎗 YTMP3
//use try catch instead
const { ytmp3, ytmp3v2 } = require('ruhend-scraper')
//for v1
const data = await ytmp3('your youtube url')
console.log(data)
//for v2
const data2 = await ytmp3v2('your youtube url')
console.log(data2)
🎗 YTMP4
//use try catch instead and
const { ytmp4, ytmp4v2 } = require('ruhend-scraper')
//for v1
const data = await ytmp4('your youtube url')
console.log(data)
//for v2
const data2 = await ytmp4v2('your youtube url')
console.log(data2)
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) {
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
*/
}
const { fbdl } = require('ruhend-scraper')
const text = "link Facebook" //https://Facebook.com/xxxxxxx
let res = await fbdl(text);
let data = await res.data;
console.log(rer);
//or
console.log(data);
🎗 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 0 weekly downloads. As such, ruhend-scraper popularity was classified as not popular.
We found that ruhend-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.