tiksave
v1.0.0
Published
donwload your favorite tiktok videos without watermark
Downloads
19
Maintainers
Readme
features:• no watermark download• no need apikey• fast and easy to use• supports multiple request• supports dual titkok link > vt.tiktok > tiktok.com
installation
npm i tiksave
calling a variable
const tiktok = require("tiksave");
how to use?
tiktok.save("TIKTOK VIDEO URL");
example:
tiktok.save("https://vt.tiktok.com/ZS851mWxt/").then(video => {
console.log(video);
});
you can also use the await function
async function download () {
const video = await tiktok.save("https://vt.tiktok.com/ZS851mWxt/");
console.log(video);
}
download();