nekos-fun
v1.1.2
Published
Unofficial wrapper for nekos.fun API. Provides SFW and NSFW, Anime and Real Life Images and GIFs.
Downloads
35
Maintainers
Readme
nekos.fun
Unofficial API wrapper for nekos.fun made in JavaScript. Provide SFW and NSFW anime/real life pictures as well as GIFs for all to use.
All Endpoints: https://www.nekos.fun/apidoc.html
API discord server: https://discord.gg/UeZagdFVXh My discord server: https://discord.gg/NFkMxFeEWr
Installation
npm i nekos-fun
Examples
const neko = require('nekos-fun')
async function myFunc() {
// SFW Endpoint
console.log(`SFW: ${await neko.sfw.hug()}`)
// NSFW Endpoint
console.log(`NSFW: ${await neko.nsfw.gasm()}`)
}
// Call your function
myFunc()