TikTok Downloader 1.0.0

This commit is contained in:
Tobi Saputra 2023-03-16 17:29:10 +07:00
parent 5495874060
commit fc860d5cc0
2 changed files with 13 additions and 12 deletions

View File

@ -5,24 +5,24 @@
## Installation
- tiktok-down requires Node.js v10+ to run.
- @tobyg74/tiktok-api-dl requires Node.js v10+ to run.
### Install from NPM
```
npm install tiktok-down
npm install @tobyg74/tiktok-api-dl
```
### Install from YARN
```
yarn add tiktok-down
yarn add @tobyg74/tiktok-api-dl
```
## Usage
```
const { TiktokDL } = require("tiktok-down");
const { TiktokDL } = require("@tobyg74/tiktok-api-dl");
const tiktok_url = "https://vt.tiktok.com/ZS84BnrU9"
@ -48,7 +48,7 @@ TiktokDL(tiktok_url)
statistics: {
...
},
video: [
video // images: [
...
],
music: [

View File

@ -1,5 +1,5 @@
{
"name": "tiktok-down",
"name": "@tobyg74/tiktok-api-dl",
"version": "1.0.0",
"description": "Scrapper for download Video, Image, Music from Tiktok",
"main": "index.js",
@ -8,22 +8,23 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/TobyG74/tiktok-down.git"
"url": "git+https://github.com/TobyG74/tiktok-api-dl.git"
},
"keywords": [
"tiktok-down",
"tiktok-api",
"tiktok-downloader",
"tiktok-dl",
"tiktok-nowatermark",
"tiktok"
],
"author": "Tobz",
"license": "MIT",
"license": "ISC",
"bugs": {
"url": "https://github.com/TobyG74/tiktok-down/issues"
"url": "https://github.com/TobyG74/tiktok-api-dl/issues"
},
"homepage": "https://github.com/TobyG74/tiktok-down#readme",
"homepage": "https://github.com/TobyG74/tiktok-api-dl#readme",
"dependencies": {
"axios": "^1.3.4"
}
},
"devDependencies": {}
}