1.0.5 • Published 11 months ago

@bochilteam/scraper-sosmed v1.0.5

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
11 months ago

Social media Scraper

Scraper social media data

Installation

npm i @bochilteam/scraper-sosmed

Usage

Example tiktok video download

// Import module
import { savefrom, tiktokdl } from '@bochilteam/scraper-sosmed'

const url = 'https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226'
// Using tiktokdl
const data = await tiktokdl(url)
console.log(data) // JSON
// Using savefrom
const result = await savefrom(url)
console.log(result) // JSON

Example download youtube video

import { youtubedl } from '@bochilteam/scraper-sosmed'

const data = await youtubedl('https://youtu.be/iik25wqIuFo')
console.log(data) // JSON
console.log(Object.keys(data.video)) // List of resolution/quality
const url = await data.video['720p'].download() // Download '720p' video
console.log(url) // string

Documentation

1.0.5

11 months ago

1.0.4

12 months ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago