2023-03-16 14:17:43 +07:00
2023-03-16 14:17:43 +07:00
2023-03-16 14:17:43 +07:00
2023-03-16 14:17:43 +07:00
2023-03-16 14:17:43 +07:00
2023-03-16 14:17:43 +07:00

Tiktok Downloader

  • Used to download videos, images, music from TikTok
  • No login or password are required

Installation

  • tiktok-down requires Node.js v10+ to run.

Install from NPM

npm install tiktok-down

Install from YARN

yarn add tiktok-down

Usage

const { TiktokDL } =  require("tiktok-down");

const tiktok_url = "https://vt.tiktok.com/ZS84BnrU9"

TiktokDL(tiktok_url)
    .then((result) => {
        console.log(result);
    })

Response

{
  status: "success",
  result: {
    type: "video" // "image",
    id: ...,
    create_time: ...,
    description: ...,
    author: {
        ...
    },
    statistics: {
        ...
    },
    video: [
        ...
    ],
    music: [
        ...
    ]
  }
}
Description
No description provided
Readme Apache-2.0 434 KiB
Languages
JavaScript 75.3%
TypeScript 24.4%
Shell 0.3%