textpromaker
v0.0.6
Published
api module
Downloads
1
Readme
TEXTPROMAKER (deprecated)
Z-RAPi
is made to help. Hopefully this module is useful for developer friends, you can request next scraping or features.
Requires Node >= 12
[Documentation]
Installation
npm i textpromaker
Example TextMaker
const zrapi = require("textpromaker");
//TextPro
textpromaker
.textpro("https://textpro.me/create-blackpink-logo-style-online-1001.html", [
"teks",
])
.then((data) => console.log(data))
.catch((err) => console.log(err));
//TextPro with 2 text
textpromaker
.textpro(
"https://textpro.me/create-glitch-text-effect-style-tik-tok-983.html",
["teks", "teks 2"]
)
.then((data) => console.log(data))
.catch((err) => console.log(err));
//Photooxy
textpromaker
.photooxy(
"https://photooxy.com/logo-and-text-effects/create-a-picture-of-love-message-377.html",
["teks"]
)
.then((data) => console.log(data))
.catch((err) => console.log(err));
//Photooxy with 2 text
textpromaker
.photooxy(
"https://photooxy.com/logo-and-text-effects/make-tik-tok-text-effect-375.html",
["teks", "Teks 2"]
)
.then((data) => console.log(data))
.catch((err) => console.log(err));
Example Paste
const textpromaker = require("textpromaker");
textpromaker
.pastegg("you code, console.log('hi')", {
title: "TextProMaker",
description: "Source code",
nameFile: "hasil.txt",
}) //optional
.then((data) => console.log(data))
.catch((err) => console.log(err));
//or
let options = {
title: "TextProMaker",
description: "Source code",
nameFile: "hasil.txt",
};
textpromaker
.pastegg("you code, console.log('hi')", options) //options is optional
.then((data) => console.log(data))
.catch((err) => console.log(err));
//or
textpromaker
.pastegg("you code, console.log('hi')") //options is optional
.then((data) => console.log(data))
.catch((err) => console.log(err));
Example Downloader
const textpromaker = require("textpromaker");
// KeepTiktok
textpromaker
.keeptiktok("https://vt.tiktok.com/khpq9t")
.then((data) => console.log(data))
.catch((err) => console.log(err));
// Snaptik
textpromaker
.snaptik("https://vt.tiktok.com/khpq9t")
.then((data) => console.log(data))
.catch((err) => console.log(err));