New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nayan-apis-server

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nayan-apis-server

Simple create api(Mohammad Nayan)

  • 2.4.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17
decreased by-94.35%
Maintainers
0
Weekly downloads
 
Created
Source

Typing SVG

npm version version npm downloads

Instalation :

> npm i nayan-api-server
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-server");

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-server");

const name = "ghum" //song name

spotify(name).then(data => {
  console.log(data)
 
});

Usage Pintarest

const { pintarest } = require("nayan-api-server");

const search = "Neymar pic"

pintarest(search).then(data => {
  console.log(data)
 
});

Usage img2text

const { img2text } = require("nayan-api-server");

img2text("https://i.imgur.com/2TTyRTo.jpeg").then(data => {
  console.log(data)
});

Usage PHOTOXY

const {photoxy} = require("nayan-api-server");

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-server");

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-server");

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-server");

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-server");

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-server");

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-server");

const address = "ip" //ip address

ip(address).then(data => {
  console.log(data)

});

Usage removebg

const { removebg } = require("nayan-api-server");

const url = "url" //pic url

removebg(url).then(data => {
  console.log(data)

});

Usage upscale

const { upscale } = require("nayan-api-server");

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-server");

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-server");

const token = "token" // your fb access token
const uid = "uid" // fb user uid

fbinfo(token, uid).then(data => {
  console.log(data)
});
const {GDLink} = require("nayan-api-server");

const url = 'url' // Public Google Drive Url

GDLink(url).then(data => {
  console.log(data)

});
const { gwsearch } = require("nayan-api-server");

const name = "nayan-api-server" // 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-server");

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-server')
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-server");

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-server');

async function main() {
    try {
        const news = await bdnews();
        console.log(news);
    } catch (error) {
        console.error("Error fetching news news:", error);
    }
}

main();
CONTACT ME🐱

WhatsApp Facebook Messenger Github

Keywords

FAQs

Package last updated on 12 Dec 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