Socket
Book a DemoInstallSign in
Socket

@ru-hend/scraper

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ru-hend/scraper

scraper downloader tiktok ytmp3 ytmp4 Facebook instagram youtube search

latest
Source
npmnpm
Version
8.4.3
Version published
Weekly downloads
59
1.72%
Maintainers
0
Weekly downloads
 
Created
Source

Downloader Media

Usage

🎗 TIKTOK

const { ttdl } = require('@ru-hend/scraper')
import { ttdl } from '@ru-hend/scraper'

const url = 'https://vt.tiktok.com/xxxx'
let { title, author, username, published, like, comment, share, views, bookmark, video, cover, 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, music, profilePicture }
*/

🎗 YTMP3

const { ytmp3 } = require('@ru-hend/scraper')
import { ytmp3 } from '@ru-hend/scraper'

const url = 'youtube link'
const { title, audio, author, description, duration, views, upload, thumbnail } = await ytmp3(url);
or 
const data = await ytmp3(url)
return data or console.log(data)

🎗 YTMP4

const { ytmp4 } = require('@ru-hend/scraper')
import { ytmp4 } from '@ru-hend/scraper'

const url = 'youtube link'
const { title, audio, author, description, duration, views, upload, thumbnail } = await ytmp4(url);
or 
const data = await ytmp4(url)
return data or console.log(data)

🎗 INSTAGRAM

const { igdl } = require('@ru-hend/scraper')
import { igdl } from '@ru-hend/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
       */
   }

🎗 FACEBOOK

const { fbdl } = require('@ru-hend/scraper')
import { fbdl } from '@ru-hend/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('@ru-hend/scraper')
   import { ytsearch } from '@ru-hend/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)

Keywords

whatsapp

FAQs

Package last updated on 12 Feb 2025

Did you know?

Socket

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.

Install

Related posts