Socket
Socket
Sign inDemoInstall

aflb

Package Overview
Dependencies
0
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aflb

JS anime gif wrapper


Version published
Weekly downloads
105
increased by150%
Maintainers
1
Install size
1.60 MB
Created
Weekly downloads
 

Readme

Source

npm npm install size

NPM

AFLB ¯_(ツ)_/¯

aflb

Installation

npm i aflb

Huge anime action gifs with no external dependencies.

SFW Action Gifs

FunctionDescription
angryGets a URL of a angry image/gif
bakaGets a URL of a baka image/gif
biteGets a URL of a bite image/gif
bloodsuckGets a URL of a bloodsuck image/gif
blushGets a URL of a blush image/gif
boredGets a URL of a bored image/gif
kissCheekGets a URL of a kissing cheek image/gif
cheekGets a URL of a squeeze cheeks image/gif
clapGets a URL of a clap image/gif
cringeGets a URL of a cringe image/gif
cryGets a URL of a cry image/gif
danceGets a URL of a dance image/gif
drinkGets a URL of a drink image/gif
facedeskGets a URL of a facedesk image/gif
fightGets a URL of a fight image/gif
happyGets a URL of a happy image/gif
hateGets a URL of a hate image/gif
highfiveGets a URL of a highfive image/gif
hornyGets a URL of a horny image/gif
killGets a URL of a kill image/gif
handGets a URL of a hand image/gif
laughGets a URL of a laugh image/gif
lickGets a URL of a lick image/gif
lurkGets a URL of a lurk image/gif
meowGets a URL of a meow image/gif
nomGets a URL of a nom image/gif
feedGets a URL of a feed image/gif
hugGets a URL of a hug image/gif
nuzzleGets a URL of a nuzzle image/gif
kissGets a URL of a kiss image/gif
patGets a URL of a pat image/gif
tickleGets a URL of a tickle image/gif
scareGets a URL of a scare image/gif
scaredGets a URL of a scared image/gif
pokeGets a URL of a poke image/gif
smugGets a URL of a smug image/gif
stareGets a URL of a stare image/gif
panicGets a URL of a panic image/gif
nyaGets a URL of a nya image/gif
saluteGets a URL of a salute image/gif
singGets a URL of a singing image/gif
shrugGets a URL of a shrug image/gif
chokeGets a URL of a choke image/gif
grinGets a URL of a grin image/gif
musicGets a URL of a listen to music image/gif
loveGets a URL of a shows love image/gif
drawingGets a URL of a drawing image/gif
poutGets a URL of a pout image/gif
runGets a URL of a run image/gif
sadGets a URL of a sad image/gif
foreheadGets a URL of a kiss forehead image/gif
watchingGets a URL of a watch tv image/gif
walkingGets a URL of a walking image/gif
plaidGets a URL of a plaid image/gif
cookingGets a URL of a cooking image/gif
showerGets a URL of a take shower image/gif
gameGets a URL of a game image/gif
murrGets a URL of a murr image/gif
raiseGets a URL of a raise to hands image/gif
sakeGets a URL of a drink sake image/gif
shootGets a URL of a shoot image/gif
revertGets a URL of a turn back image/gif
sipGets a URL of a all sip image/gif
sipTeaGets a URL of a sip tea image/gif
sipCoffeeGets a URL of a sip coffee image/gif
sipCacaoGets a URL of a sip cacao image/gif
sipJuiceGets a URL of a sip juice image/gif
slapGets a URL of a all slap/punch/hit image/gif
slapAssGets a URL of a slap ass image/gif
slapCheekGets a URL of a smack image/gif
sleepGets a URL of a all sleep image/gif
sleepSoloGets a URL of a solo sleep image/gif
sleepTogetherGets a URL of a together sleep image/gif
smileGets a URL of a smile image/gif
smokeGets a URL of a smoke image/gif
stealGets a URL of a steal image/gif
stockingsGets a URL of a stockings image/gif
sweetiesGets a URL of a sweeties image/gif
wastedGets a URL of a wasted image/gif
waveGets a URL of a wave image/gif
teaseGets a URL of a wave image/gif
winkGets a URL of a wink image/gif
sexGets a URL of a (NO NSFW) sex image/gif
cuddleGets a URL of a cuddle image/gif

SFW Other Gif/Image

FunctionDescription
mixGets a URL of a cute neko, kitsune image/gif
nekoGets a URL of a cute neko image/gif
nekoImgGets a URL of a cute neko image
nekoGifGets a URL of a cute neko gif
kitsuneGets a URL of a cute kitsune image

NSFW Gifs

NSFW content is not yet available, coming soon..

FunctionDescription
assGets a URL of a ass image
ahegaoGets a URL of a ahegao image
bdsmGets a URL of a bdsm image
blowjobGets a URL of a blowjob image
boobjobGets a URL of a boobjob image
cumGets a URL of a cum image
elvesGets a URL of a elves image
hentaiGets a URL of a hentai image
hentai_gifGets a URL of a hentai gif
masturbationGets a URL of a masturbation image
neko_nsfwGets a URL of a neko nsfw image
pantiesGets a URL of a panties image
tentacleGets a URL of a tentacle image
thighsGets a URL of a thighs image

Typings

I added a typings file and will be working to improve it. This allows editors like VSC to use intellisense/autocomplete to suggest functions and help out with parameters and to see what you'll be receiving as a result of function calls.

Examples

Await/Async example

const client = require('aflb');
const aflb = new client();

async function getKissImage() {
  console.log(await aflb.sfw.kiss());
}

getKissImage();

returns:

"https://cdn.discordapp.com/attachments/820213553540759571/894020186611548230/kiss_01.gif"

Standart Usage

const client = require('aflb');
const aflb = new client();

console.log(aflb.sfw.kiss())

returns:

"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/kiss_02.gif"

Usage in Embed

const { MessageEmbed } = require('discord.js')
const client = require('aflb');
const aflb = new client();

const embed = new MessageEmbed().setImage(aflb.sfw.kiss())

returns:

"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/kiss_02.gif"

Embed Usage

Extended Examples

The examples show only the import of the sfw / nsfw module, in case you don't need the second part.

Import only sfw content

const client = require('aflb');
const { sfw } = new client();

console.log(sfw.kiss())

returns:

"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/kiss_02.gif"

Import only nsfw content

const client = require('aflb');
const { nsfw } = new client();

console.log(nsfw.ass())

returns:

"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/mega-nsfw.gif"

Keywords

FAQs

Last updated on 25 Oct 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