Socket
Socket
Sign inDemoInstall

hmtai

Package Overview
Dependencies
7
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hmtai

Large Anime/Hentai Image API for random images, fast and reliable!


Version published
Weekly downloads
870
increased by62.31%
Maintainers
1
Install size
497 kB
Created
Weekly downloads
 

Readme

Source

HMtai!


NPM version NPM downloads

hmtai is an Anime / Hentai (NSFW) Image API which simplifies how you fetch random images from the REST! More features and functions will be added soon!

Will be i updating this API? Of course nyse, dude, but this API has a 18.100 NSFW picture, and 1000+ SFW media. 19 200 total. All picture we added manually.

My goal is to create the most depraved library ever and I think I got it

Discord Server | REST API | HMfull | Support Project - Read Please!

Installation

npm install hmtai

Changelogs

v3.2.0

  • Many SFW endpoints
  • Hug SFW content update

Example(s)

NodeJS:

// hmtai //
const HMtai = require("hmtai");
const hmtai = new HMtai();

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

// Get other NSFW Images //
console.log("Hentai: " + await hmtai.nsfw.hentai());
console.log("BDSM: " + await hmtai.nsfw.bdsm());
console.log("Ero: " + await hmtai.nsfw.ero());

Legacy Function(s)

Example:

hmtai.sfw.function(); // Format
hmtai.sfw.neko(); // Example
hmtai.sfw.wallpaper(); // Example 2
FunctionDescription
waveGreeting! Wave gifs! (●'◡'●)
winkWink! 😉
teaI want some tea! ☕
bonkBaaakaa
punchONE PUUUUUUUUUUUNCH
pokePoke-poke :P
bullyCyberbullyig >:3
patLet's pat some good guys (/ω\)
kissKissu! :3
kickTurn back!
blushE-to... ////
feedWho want eat? :P
smugSmug :P
hugI like hugs, do you?
cuddleCuddle cuddle cuddle xD
cryBite bite biting :3
slapBAKA!!
fiveGive me five, bro! 👋
glompMy dear!!!
happyBecause i'm happy...
holdThat's...embrassing..
nomnom 0-0
smile:))))
throwGo out here, man!
lickMmm hum hum, so tasty~
biteNyaaaaaa!!
danceMove like lady jagger ヾ(≧▽≦*)o
boopBoopyy
sleepZzz 💤
likeI like it, nice 👍
killKill everyone, everybody!
nosebleedThat's...impressive
threatenRrrr
tickleTiiickle tickle tickle :3
depressionSFW depression Gifs :c
wolf_artsAwoooooo girls :3
jahy_artsSo hot Jahy :3
neko_artsSFW Neko Girls (Cat Girls)
coffee_artsDo you want some coffee? And girls :3
wallpaperSFW Wallpaper with Anime
mobileWallpaperSFW Wallpaper with Anime on Mobile

NSFW Function(s)

Example:

hmtai.nsfw.function(); // Format
hmtai.nsfw.hentai(); // Example
FunctionDescription
analDoes somebody like being in all holes?~
assI know you like anime ass~ uwu
bdsmIf you don't know what it is, search it up
cumBasically sticky white stuff that is usually milked from sharpies.
classicRelaxing classic kekus uwu
creampieSo hot, sticky, and inside uwu
mangaSends a random doujin page imageURL!
femdomFemale Domination?
hentaiSends a random vanilla hentai imageURL~
incestI know, you like it. Brothet and sister <3 And..mo...omg
masturbationYou like lewd solo?~
publicSome people like do it on a public..uh~
eroeros, ero Uniforms, etc, you know what eros are :3
orgyGroup Lewd Acts
elvesSo, it's not Elvis Presley, but i know, you like it :)
yuriWhat about cute Les?~
pantsuI mean... just why? You like underwear?
glassesGirls that wear glasses, uwu~
cuckoldWow, I won't even question your fetishes.
blowjobBasically an image of a girl sucking on a sharp blade!
boobjobSo soft, round ... gentle ... damn we love it
footjobSo you like smelly feet huh?
handjobSo you like how's it feeling in hand, huh?
boobsA-am..that's normal size!
thighsOh, i so like it, it's best of the best, like a religion <3
pussyThe genitals of a female, or a cat, you give the meaning.
ahegaoSo happy woman faces :))
uniformSchool and many other Uniforms~
gangbang5 on 1? Uh..
tentaclesI'm sorry but, why do you like it? Uh..
gifBasically an animated image, so yes :3
nsfwNekoNSFW Neko Girls (Cat Girls)
nsfwMobileWallpaperNSFW Anime Mobile Wallpaper
zettaiRyouikiThat one part of the flesh being squeeze in thigh-highs~<3

Wallpaper Function(s)

Example:

hmtai.nsfw.function(); // NSFW Format
hmtai.nsfw.mobileWallpaper(); // NSFW Example
FunctionDescription
hmtai.mobileWallpaper()Fetch a random SFW Wallpaper! (Mobile)
hmtai.wallpaper()Fetch a random SFW Wallpaper! (Desktop)
hmtai.nsfw.nsfwMobileWallpaper()Fetch a random NSFW Wallpaper! (Mobile)

Discord Bot Example

// Imports Discord.JS and HMtai //
const Discord = require("discord.js"); // v12
const HMtai = require("hmtai");
const hmtai = new HMtai()

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

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

client.on("message", async (message) => {
  // Create New Embed //
  const embed = new Discord.MessageEmbed();

  // 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 == "nsfwNeko") {

    // For Embed //
    embed.setImage(await hmtai.nsfw.nsfwNeko());
    return message.channel.send(embed);

    // For Plain Text //
    return message.channel.send(hmtai.nsfw.nsfwNeko());

    // For Attachment //
    let img = await hmtai.nsfw.nsfwNeko();
    return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
  } else if (command == "ero") {

    // For Embed //
    embed.setImage(await hmtai.nsfw.ero());
    return message.channel.send(embed);

    // For Plain Text //
    return message.channel.send(await hmtai.nsfw.ero());

    // For Attachment //
    let img = await hmtai.nsfw.nsfwNeko();
    return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
  }
});

Thank Yous

  • 💗Halami💗#1469 (What she shared with me her NSFW library!)

Sources

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

Support

Discord Server

Keywords

FAQs

Last updated on 11 Dec 2022

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