neastooapi
Advanced tools
Comparing version 0.0.1-beta.1.1 to 0.0.2-beta.1.0
14
index.js
@@ -1,5 +0,13 @@ | ||
import { chatGPT } from './plugins/ChatGPT.js'; | ||
import { chatGPT } from './plugins/Ai-ChatGPT.js'; | ||
import { blackBoxChat } from './plugins/Ai-Blackbox.js'; | ||
import { TiktokDL } from './plugins/DL-tiktok.js'; | ||
import { ytbmp3downloader, ytbmp4downloader } from './plugins/DL-youtube.js'; | ||
import { InstagramDL } from './plugins/DL-instagram.js'; | ||
import { SpotifyDL } from './plugins/DL-spotify.js'; | ||
import { twitterDownloader } from './plugins/DL-x.js'; | ||
import { googleDriveDownloader } from './plugins/DL-gdrive.js'; | ||
import { megaDl } from './plugins/DL-mega.js'; | ||
import { nhentaiSearch } from './plugins/AN-nhentai.js'; | ||
// Ekspor semua fitur di sini | ||
export { chatGPT }; | ||
// Tambahkan fitur lain di sini jika ada | ||
export { chatGPT, blackBoxChat, TiktokDL, ytbmp3downloader, ytbmp4downloader, InstagramDL, SpotifyDL, twitterDownloader, googleDriveDownloader, megaDl, nhentaiSearch }; |
{ | ||
"name": "neastooapi", | ||
"version": "0.0.1-beta.1.1", | ||
"version": "0.0.2-beta.1.0", | ||
"description": "NeastooID Scraper Module NPMJS", | ||
@@ -8,5 +8,70 @@ "main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "node test.js" | ||
}, | ||
"keywords": ["Ai", "Screper", "Api", "NeastooID"], | ||
"keywords": [ | ||
"Scraper", | ||
"Downloader", | ||
"TikTok", | ||
"Instagram", | ||
"Capcut", | ||
"Google Drive", | ||
"MediaFire", | ||
"Facebook", | ||
"Twitter", | ||
"Spotify", | ||
"Pinterest", | ||
"Sfile", | ||
"YouTube", | ||
"Google Text To Speech", | ||
"Google Translator", | ||
"Translator", | ||
"AutoDown", | ||
"Google", | ||
"Translator", | ||
"Text To Speech", | ||
"Scraper tools", | ||
"Data scraping", | ||
"Content downloader", | ||
"Social media downloader", | ||
"File downloader", | ||
"Audio downloader", | ||
"Video downloader", | ||
"Search", | ||
"Translation", | ||
"Language", | ||
"Download", | ||
"Automation", | ||
"Media", | ||
"Text", | ||
"Speech", | ||
"Utility", | ||
"Framework", | ||
"Library", | ||
"Development", | ||
"Tool", | ||
"AI", | ||
"NLP", | ||
"Machine learning", | ||
"Deep learning", | ||
"Neural networks", | ||
"Pattern recognition", | ||
"Computer vision", | ||
"Productivity", | ||
"Analysis", | ||
"Optimization", | ||
"Debugging", | ||
"Performance", | ||
"Diagnostic", | ||
"Models", | ||
"Applications", | ||
"Algorithms", | ||
"Web scraping", | ||
"Data harvesting", | ||
"Data mining", | ||
"HTML parsing", | ||
"Bulk downloader", | ||
"Streaming downloader", | ||
"Web tools", | ||
"Development tools" | ||
], | ||
"author": "YusupKakuu", | ||
@@ -13,0 +78,0 @@ "license": "ISC", |
132
README.md
@@ -10,3 +10,7 @@ [![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/colored.png)](#table-of-contents) | ||
📍 How to use | ||
# `📍 How to use ???` | ||
`📌 Ai </>` | ||
1. ChatGPT | ||
```js | ||
@@ -22,3 +26,127 @@ import { chatGPT } from 'neastooapi'; | ||
2. BlackboxAI | ||
```js | ||
import { blackBoxChat } from 'neastooapi'; | ||
(async () => { | ||
const chat = "Hi"; | ||
const response = await blackBoxChat(chat); | ||
console.log("Response from BlackBox:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
--------- | ||
`📌 Downloader </>` | ||
1. Tiktok Downloader | ||
```js | ||
import { TiktokDL } from 'neastooapi'; | ||
(async () => { | ||
const tiktokUrl = "https://www.tiktok.com/@example/video/123456789"; // Ganti dengan URL TikTok asli | ||
const response = await TiktokDL(tiktokUrl); | ||
console.log("Response from TikTok Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
2. Youtube MP3/MP4 Downloader | ||
```js | ||
import { ytbmp3downloader, ytbmp4downloader } from 'neastooapi'; | ||
(async () => { | ||
const youtubeUrl = "https://www.youtube.com/watch?v=example"; // Ganti dengan URL YouTube asli | ||
const mp3Response = await ytbmp3downloader(youtubeUrl); | ||
console.log("Response from YouTube MP3 Downloader:", mp3Response); | ||
const mp4Response = await ytbmp4downloader(youtubeUrl); | ||
console.log("Response from YouTube MP4 Downloader:", mp4Response); | ||
})(); | ||
``` | ||
3. Instagram Downloader | ||
```js | ||
import { InstagramDL } from 'neastooapi'; | ||
(async () => { | ||
const instagramUrl = "https://www.instagram.com/p/example"; // Ganti dengan URL Instagram asli | ||
const response = await InstagramDL(instagramUrl); | ||
console.log("Response from Instagram Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
4. Spotify Downloader | ||
```js | ||
import { SpotifyDL } from 'neastooapi'; | ||
(async () => { | ||
const spotifyUrl = "https://open.spotify.com/track/example"; // Ganti dengan URL Spotify asli | ||
const response = await SpotifyDL(spotifyUrl); | ||
console.log("Response from Spotify Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
5. Twitter/X Downloader | ||
```js | ||
import { twitterDownloader } from 'neastooapi'; | ||
(async () => { | ||
const twitterUrl = "https://twitter.com/username/status/example"; // Ganti dengan URL Twitter asli | ||
const response = await twitterDownloader(twitterUrl); | ||
console.log("Response from Twitter Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
6. Google Drive Downloader | ||
```js | ||
import { googleDriveDownloader } from 'neastooapi'; | ||
(async () => { | ||
const googleDriveUrl = "https://drive.google.com/file/d/example"; // Ganti dengan URL Google Drive asli | ||
const response = await googleDriveDownloader(googleDriveUrl); | ||
console.log("Response from Google Drive Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
7. Mega Downloader | ||
```js | ||
import { megaDl } from 'neastooapi'; | ||
(async () => { | ||
const megaUrl = "https://mega.nz/file/example"; // Ganti dengan URL Mega asli | ||
const response = await megaDl(megaUrl); | ||
console.log("Response from Mega Downloader:", response); // Menampilkan respons di log terminal | ||
})(); | ||
``` | ||
--------- | ||
`📌 Anime Tools </>` | ||
1. Random Waifu | ||
```js | ||
Pop Mie - Under Construction (Maybe?) | ||
``` | ||
--------- | ||
🛑 Note !!! | ||
> This Module is Still Under Development!!! Just Wait for the Update!!! | ||
> This Module is Still Under Development!!! Just Wait for the Update!!! | ||
--------- | ||
## Thanks To ( Source of Ideas ) | ||
[![ShirokamiRyzen](https://github.com/ShirokamiRyzen.png?size=100)](https://github.com/ShirokamiRyzen) | ||
## Staff Contribute | ||
[![NeofetchNpc](https://github.com/NeofetchNpc.png?size=100)](https://github.com/NeofetchNpc) | ||
[![NeastooID](https://github.com/NeeasTooID.png?size=100)](https://github.com/NeeasTooID) | ||
--------- |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
16497
15
282
2
151
12