1.0.0 • Published 2 years ago

w5bot-textmaker v1.0.0

Weekly downloads
-
License
GNU General Publi...
Repository
github
Last release
2 years ago

Textpro - Photooxy Unlimited API

This api can handle thousands of requests. Also its completely free and unlimited resources.

📦 NPM Installation

npm i w5bot-textmaker

🧾 Examples

Textpro 1

const w5botapi = require('w5bot-textmaker'); // Import NPM Package

w5botapi.textpro("<textpro_html>",
    // "Message One" (One Message)
    // ["Message One"], ["Message Two"] (Two Message)
    ).then(async (data) => { 
      try { 
          console.log(dat)
      } catch(err) { 
          console.log(err)
      } 
});

Textpro 2 ( Real Usage With One Message )

const w5botapi = require('w5bot-textmaker');

w5botapi.textpro("https://textpro.me/create-neon-devil-wings-text-effect-online-free-1014.html",
    "white spider"
    ).then(async (data) => { 
      try { 
          console.log(dat)
      } catch(err) { 
          console.log(err)
      } 
});

Textpro 3 ( Real Usage With Two Message )

const w5botapi = require('w5bot-textmaker');

w5botapi.textpro("https://textpro.me/create-realistic-vintage-style-light-bulb-1000.html",
    ["Developer"], ["white spider"]
    ).then(async (data) => { 
      try { 
          console.log(dat)
      } catch(err) { 
          console.log(err)
      } 
});