Socket
Socket
Sign inDemoInstall

akaneko

Package Overview
Dependencies
0
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    akaneko

An Anime/Hentai Image API which simplifies how you fetch random images for you! Reliable, and very pleasure friendly!


Version published
Weekly downloads
1.3K
increased by0.75%
Maintainers
1
Install size
17.9 kB
Created
Weekly downloads
 

Readme

Source

Cute As Fubuki


Akaneko is both a SFW and NSFW Wrapper, there's hentais for you perverts to use, however do understand that I'm the only one working on this, and I hand pick images to add, so you may get repeated images! Use it for your Discord Bot, your Self Made Console Waifu, or whatever it is :3

Discord Server | Repository | Help fund Akaneko♡

Installation

npm install akaneko

Example(s)

NodeJS:

// Akaneko //
const akaneko = require('akaneko');

async function yourFunctionName() {

  // Get SFW Neko Images, uwu //
  console.log("SFW Neko: " + await akaneko.neko());

  // Get Lewd Neko (NSFW), owo //
  console.log("Lewd Neko:" + await akaneko.lewdNeko());

  // Lewd Bomb me onii-san~~ //
  console.log("Lewd Bomb: " + await akaneko.lewdBomb(5));

  // Get other NSFW Images //
  console.log("BDSM: " + await akaneko.nsfw.bdsm());
  console.log("Maid: " + await akaneko.nsfw.maid());
  console.log("Hentai: " + await akaneko.nsfw.hentai());
}

// Call your Function! //
yourFunctionName();

Legacy Function(s)

Example:

akaneko.function() // Format
akaneko.lewdNeko() // Example
akaneko.lewdBomb(5) // Meow, I'm Example 2
FunctionDescription
lewdNekoNSFW Neko Girls (Cat Girls)
lewdBomb(n)Sends (n) amount of lewds! :3

SFW Function(s)

Example:

akaneko.function() // Format
akaneko.foxgirl() // Awoo!~ Another example!
akaneko.neko() // Meow! An Example!
FunctionDescription
nekoSFW Neko Girls (Cat Girls)
foxgirlSFW Fox Girls (Thanks to @LamkasDev!)

NSFW Function(s)

Example:

akaneko.nsfw.function() // Format
akaneko.nsfw.hentai() // Example
akaneko.nsfw.feet() // Another Example
FunctionDescription
assI know you like anime ass~ uwu
bdsmIf you don't know what it is, search it up
blowjobBasically an image of a girl sucking on a sharp blade!
cumBasically sticky white stuff that is usually milked from sharpies.
doujinSends a random doujin page imageURL!
feetSo you like smelly feet huh?
femdomFemale Domination?
foxgirlGirl's that are wannabe foxes, yes
gifsBasically an animated image, so yes :3
glassesGirls that wear glasses, uwu~
hentaiSends a random vanilla hentai imageURL~
netorareWow, I won't even question your fetishes.
maidMaids, Maid Uniforms, etc, you know what maids are :3
masturbationSolo Queue in CSGO!
orgyGroup Lewd Acts
pantiesI mean... just why? You like underwear?
pussyThe genitals of a female, or a cat, you give the meaning.
schoolSchool Uniforms!~ Yatta~!
succubusSpooky Succubus, oh I'm so scared~ Totally don't suck me~
tentaclesI'm sorry but, why do they look like intestines?
thighsThe top part of your legs, very hot, isn't it?
uglyBastardThe one thing most of us can all agree to hate :)
uniformMilitary, Konbini, Work, Nurse Uniforms, etc!~ Sexy~
yaoiBoy on boy action, God I love boys love <3
yuriGirls on Girls, and Girl's only!<3
zettaiRyouikiThat one part of the flesh being squeeze in thigh-highs~<3

Wallpaper Function(s)

Example:

akaneko.nsfw.function() // NSFW Format
akaneko.nsfw.mobileWallpapers() // NSFW Example
FunctionDescription
akaneko.mobileWallpapers()Fetch a random SFW Wallpaper! (Mobile)
akaneko.wallpapers()Fetch a random SFW Wallpaper! (Desktop)
akaneko.nsfw.mobileWallpapers()Fetch a random NSFW Wallpaper! (Mobile)
akaneko.nsfw.wallpapers()Fetch a random NSFW Wallpaper! (Desktop)

How to Resolve Promises

// Akaneko //
const akaneko = require('akaneko');

// Option 1, using and calling an asyncronous function //
async function yourFunctionName() {
  return console.log(await akaneko.nsfw.maid()); // Output: Some weird long link that you probably will definitely try to open //
}

// Don't forget to call your function! //
yourFunctionName();

// Option 2, Returning a Promise //
akaneko.nsfw.maid().then((imageURL) => {
  return console.log(imageURL);
})

Discord Bot Example

const Discord = require('discord.js');
const akaneko = require('akaneko');

// Create New Client //
const client = new Discord.Client();

// Bot Settings //
const settings = {
  prefix: "YOUR_BOT_PREFIX",
  token: 'YOUR_BOT_TOKEN'
}

// EmbedBuilder //
const EmbedBuilder = Discord.EmbedBuilder;

// On "Message" Event! //
client.on('messageCreate', async (message) => {

  // Checks if message channel is NSFW! //
  if (!message.channel.nsfw) return message.channel.send('This channel isn\'t NSFW!');

  // Create New Embed //
  const embed = new EmbedBuilder();

  // Defines Command //
  var command = message.content.toLowerCase().slice(settings.prefix.length).split(' ')[0];

  // Onii-chan, don't reply! //
  if (!message.content.startsWith(settings.prefix) || message.author.bot) return;

  if (command == 'lewdneko') {

    // For Embed //
    embed.setImage(await akaneko.lewdNeko());
    return message.channel.send({ embeds: [embed] });

    // For Plain Text //
    return message.channel.send(await akaneko.lewdNeko());

  } else if (command == 'maid') {

    // For Embed //
    embed.setImage(await akaneko.nsfw.maid());
    return message.channel.send({ embeds: [embed] });

    // For Plain Text //
    return message.channel.send(await akaneko.nsfw.maid());
    
  }

}

  // Login to your bot using the bot token! (don't share it!) //
  client.login(settings.token);

});

Thank Yous

  • @HanBao#8443 (For helping make lewdBomb() much more simpler and also much more efficient and fast!)
  • @LamkasDev (Helping create foxgirls() <-- sfw btw, thanks so much!)
  • @taksumaki TypeScript Support!
  • @Fuwaguwa Contributing images! And suggesting the idea of having other people contribute as well!

Sources

I hand picked most of the images from the following: Discord Servers, Konachan, Patreon, Friends sending me, nHentai, etc.

Disclaimer

I own none of the image, if there's an image deemed extremely inappropriate, or just needs to be removed in general, please DM me the URL of the image, and I'll remove it as soon as possible :)

Support

Discord Server

Keywords

FAQs

Last updated on 25 Dec 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc