1.0.0 • Published 2 years ago

tiksave v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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

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();

LeiamNash