Package Exports
- nayan-api-servers
- nayan-api-servers/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nayan-api-servers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Instalation :
> npm i nayan-api-servers
Available Api
• gpt
• spotify
• img2text
• pintarest
• textpro
• photoxy
• ephoto
• ip2lucation
• removebg
• upscale
• tokencookie (fb)
• fbinfo
• GDLink
• google web search
• text to voice
• faceswap
• bdnews
Usage GPT
const { gpt } = require("nayan-api-servers");
gpt({
messages: [
{
role: "assistant",
content: "Hello! How are you today?"
},
{
role: "user",
content: "Hello, my name is Nayan."//your name
},
{
role: "assitant",
content: "Hello, Nayan! How are you today?"
}
],
prompt: "Can you repeat my name?",
model: "GPT-4",
markdown: false
}, (err, data) => {
if(err != null){
console.log(err);
} else {
console.log(data);
}
});
Usage Spotify
const { spotify } = require("nayan-api-servers");
const name = "ghum" //song name
spotify(name).then(data => {
console.log(data)
});
Usage Pintarest
const { pintarest } = require("nayan-api-servers");
const search = "Neymar pic"
pintarest(search).then(data => {
console.log(data)
});
Usage img2text
const { img2text } = require("nayan-api-servers");
img2text("https://i.imgur.com/2TTyRTo.jpeg").then(data => {
console.log(data)
});
Usage PHOTOXY
const {photoxy} = require("nayan-api-servers");
const url = "url" // photoxy url
const text = "nayan" // your text
photoxy(url, [text])
.then((data) => console.log(data))
.catch((err) => console.log(err));
Usage Photoxy 2 text
const {photoxy} = require("nayan-api-servers");
const url = "url" // photoxy 2 text input url
const text = "Mohammad" // your text
const text2 = "nayan" // your text
photoxy(url, [text, text2])
.then((data) => console.log(data))
.catch((err) => console.log(err));
Usaage Textpro
const {textpro} = require("nayan-api-servers");
const url = "url" // textpro url
const text = "nayan" // your text
textpro(url, [text])
.then((data) => console.log(data))
.catch((err) => console.log(err));
Usage Textpro 2 text
const {textpro} = require("nayan-api-servers");
const url = "url" // textpro 2 text input url
const text = "Mohammad"//your text
const text2 = "nayan"// your text
textpro(url, [text, text2])
.then((data) => console.log(data))
.catch((err) => console.log(err))
Usaage Ephoto
const {ephoto} = require("nayan-api-servers");
const url = "url" // ephoto url
const text = "nayan" // your text
ephoto(url, [text])
.then((data) => console.log(data))
.catch((err) => console.log(err));
Usage Ephoto 2 text
const {ephoto} = require("nayan-api-servers");
const url = "url" // ephoto 2 text input url
const text = "Mohammad"//your text
const text2 = "nayan"// your text
ephoto(url, [text, text2])
.then((data) => console.log(data))
.catch((err) => console.log(err))
Usage Ip2Lucation
const { ip } = require("nayan-api-servers");
const address = "ip" //ip address
ip(address).then(data => {
console.log(data)
});
Usage removebg
const { removebg } = require("nayan-api-servers");
const url = "url" //pic url
removebg(url).then(data => {
console.log(data)
});
Usage upscale
const { upscale } = require("nayan-api-servers");
const link = "link" //past pic link
const model = "1"// model 1 or 2
upscale(link, model).then(data => {
console.log(data)
});
Usage TokenCookie (fb)
const { tokencookie } = require("nayan-api-servers");
const user = "username" // your fb username
const pass = "password" // your fb password
tokencookie(user, pass).then(data => {
console.log(data)
});
Usage Fbinfo
const { fbinfo } = require("nayan-api-servers");
const token = "token" // your fb access token
const uid = "uid" // fb user uid
fbinfo(token, uid).then(data => {
console.log(data)
});
Usage GDLink
const {GDLink} = require("nayan-api-servers");
const url = 'url' // Public Google Drive Url
GDLink(url).then(data => {
console.log(data)
});
Usage Google Web Search
const { gwsearch } = require("nayan-api-servers");
const name = "nayan-api-servers" // Name of the website
const limit = "5" // limit of results (total limit 1-20)
gwsearch(name, limit).then(data => {
console.log(data)
});
Usage Imagine
const { imagine } = require("nayan-api-servers");
const promt = "cat, 4k" // your promt
imagine(promt).then(data => {
console.log(data)
});
Usage Text To Voice
Name
Male: Bashkar, Pradeep
Female: Nabanita, Tanisha
const { text2voice } = require('nayan-api-servers')
const text = 'আমার নাম নয়ন';
const name = 'Tanisha';
const file = "nayan.mp3"
text2voice(text, name, file).then(data => {
console.log(data)
})
Usage faceswap
const { faceswap } = require("nayan-api-servers");
const sourceUrl = "link" //past source pic link
const targetUrl = "link"// past target pic link
faceswap(sourceUrl, targetUrl).then(data => {
console.log(data)
});
Usage Bdnews
const { bdnews } = require('nayan-api-servers');
async function main() {
try {
const news = await bdnews();
console.log(news);
} catch (error) {
console.error("Error fetching news news:", error);
}
}
main();
CONTACT ME🐱