1.0.0 • Published 12 months ago

tiby.js v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

TibyAi.js Logo

🚀 Introduction

A simple official npm package used to fetch tiby api (Official TSAZ Product)

💿 Setup

npm install tiby.js
// your nodejs workspace
const Tiby = require("tiby.js");
const client = new Tiby.Client();

📟 Question

// your nodejs workspace
const Tiby = require("tiby.js");
const client = new Tiby.Client();

client.question("Ciao tiby").then(res => {
    console.log(res)
})

📽 Function

// your nodejs workspace
const Tiby = require("tiby.js");
const client = new Tiby.Client();

async function AskToTiby(qst) {
    let res = await client.question("Ciao");
    return res;
}

console.log(AskToTiby);
1.0.0

12 months ago