npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

badonker

v0.0.6

Published

Enhance and spice up your NSFW stuff with badonker.

Downloads

2

Readme

npm npm install size CodeFactor

NPM


Installation

npm i badonker

Enhance and spice up your NSFW stuff with badonker.
Quick rewrite and animated object from scathach-api.

| Function | Description | | --------------- | -------------------------------------------- | | honker | Get a gif or animated URL of a honker | | badonkers | Get a gif or animated URL of a badonkers | | hhonker | Get a gif or animated URL of a hentai honkwe | | ass | Get a gif or animated URL of a ass | | hass | Get a gif or animated URL of a hentai ass | | thicc | Get a gif or animated URL of a thicc | | hthicc | Get a gif or animated URL of a hentai thicc | | milf | Get a gif or animated URL of a milf | | hmilf | Get a gif or animated URL of a hentai milf | | milk | Get a gif or animated URL of a milk | | hmilk | Get a gif or animated URL of a hentai milk | | booty | Get a gif or animated URL of a booty | | hbooty | Get a gif or animated URL of a hentai booty | | belly | Get a gif or animated URL of a belly | | hbelly | Get a gif or animated URL of a hentai belly | | gifTits | Get a gif or animated URL of a tits | | gifPussy | Get a gif or animated URL of a pussy | | gifAss | Get a gif or animated URL of a ass | | gifMissionary | Get a gif or animated URL of a army | | gifCowgirl | Get a gif or animated URL of a cow gurl | | gifBj | Get a gif or animated URL of a bj | | gifCumshots | Get a gif or animated URL of a cumshots | | ahegao | Get a gif or animated URL of a ahegao | | random | Get a gif or animated URL of as random |


NSFW example

Await/Async

const client = require("badonker");
const honker = new client();

async function test() {
  console.log(await honker.nsfw.ass());
}

test();

Promise

const client = require("badonker");
const honker = new client();

honker.bulknsfw.ass().then((honker) => {
  console.log(honker);
});

Bulk NSFW example (5)

Await/Async

const client = require("badonker");
const honker = new client();

async function test() {
  console.log(await honker.bulknsfw.booty());
}

test();

Promise

const client = require("badonker");
const honker = new client();

honker.bulknsfw.booty().then((honker) => {
  console.log(honker);
});

Advanced examples

How to import either nsfw or bulknsfw if you would like to do so.

with nsfw

const client = require("badonker");
const { nsfw } = new client();

nsfw.gifBj().then((gifBj) => console.log(gifBj));

with bulknsfw

const client = require("badonker");
const { bulknsfw } = new client();

bulknsfw.gifBj().then((gifBj) => console.log(gifBj));