1.0.5 • Published 2 months ago

tiktok-downloaders v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

tiktokdownloader

Download video Tiktok

TikTok Downloader

Modul ini memungkinkan Anda mengunduh video TikTok.

Instalasi

Anda dapat menginstal modul ini menggunakan npm:

npm i tiktok-downloaders

Cara Penggunaan

const tk = require('tiktok-downloaders');

const url = 'https://www.tiktok.com/@andx.vx/video/7324208424709836038';

async function main() {
  try {
    const result = await tk.tiktokdownload(url);
    console.log(result);
  } catch (error) {
    console.error('Error:', error.message);
  }
}

main();