Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

imran-photo-api

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imran-photo-api

api module

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Imran (deprecated)

imran-photo-api 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 imran-photo-api

Example TextMaker

const imran-photo-api = require("imran-photo-api");

//TextPro

imran-photo-api.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
imran-photo-api
  .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
imran-photo-api
  .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
imran-photo-api
  .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 imran-photo-api = require("zrapi");
imran-photo-api.pastegg("you code, console.log('hi')", {
    title: "imran-api",
    description: "Source code",
    nameFile: "hasil.txt",
  }) //optional
  .then((data) => console.log(data))
  .catch((err) => console.log(err));

//or

let options = {
  title: "imran-api",
  description: "Source code",
  nameFile: "hasil.txt",
};

imran-photo-api.pastegg("you code, console.log('hi')", options) //options is optional
  .then((data) => console.log(data))
  .catch((err) => console.log(err));

//or

imran-photo-api
  .pastegg("you code, console.log('hi')") //options is optional
  .then((data) => console.log(data))
  .catch((err) => console.log(err));

Example Downloader

const imran-photo-api = require("imran-photo-api");

// KeepTiktok
imran-photo-api
  .keeptiktok("https://vt.tiktok.com/khpq9t")
  .then((data) => console.log(data))
  .catch((err) => console.log(err));

// Snaptik
imran-photo-api
  .snaptik("https://vt.tiktok.com/khpq9t")
  .then((data) => console.log(data))
  .catch((err) => console.log(err));

🤙 Connect With Me

Facebook Telegram Instagram WhatsApp

FAQs

Package last updated on 25 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc