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 🙏

© 2026 – Pkg Stats / Ryan Hefner

boykisser

v1.0.1

Published

CLI utility to paste (or copy to clipboard) random (or specefic) boykisser ASCII art in your terminal. - i know what you are.

Readme

boykisser

A simple utility to display or copy random (or specific) boykisser ASCII art.

Supports both programmatic use as a Node.js library and a CLI tool for your terminal.

Installation

Install from npm:

npm install boykisser

Or run directly with npx (no install required):

npx boykisser

Usage as a Library

Import the default export (class owo) in your TypeScript or JavaScript project:

import Boykisser from 'boykisser';

// Initialize; set allowNSFW to true to include NSFW art
const boykisser = new Boykisser({ allowNSFW: true });

// Get a random ASCII art string
const art = boykisser.getRandomAsciiArt();
console.log(art);

// Include filename metadata
const artWithName = boykisser.getRandomAsciiArt({ includeFilename: true });
console.log(artWithName.fileName, artWithName.content);

// Get specific art by filename (without .txt extension)
const byName = boykisser.getAsciiArtByName('c41277f57a66a917');
console.log(byName);

// Get art by index
const byIndex = boykisser.getAsciiArtByIndex(0);
console.log(byIndex);

// Work with clipboard
boykisser.copyRandomAsciiArtToClipboard();
boykisser.copyAsciiArtByNameToClipboard('c41277f57a66a917');
boykisser.copyAsciiArtByIndexToClipboard(0);

API Reference

new Boykisser(options?: { allowNSFW: boolean })

  • allowNSFW (default false): include NSFW art when fetching.

getAllAsciiArt(): { fileName: string; content: string }[]

Returns an array of all loaded art objects.

getRandomAsciiArt(options?: { includeFilename: boolean }): string | { fileName: string; content: string }

Fetch a random art; pass { includeFilename: true } to receive an object with filename.

getAsciiArtByName(name: string, options?: { includeFilename: boolean }): string | { fileName: string; content: string }

Fetch art by its filename (omit the .txt extension).

getAsciiArtByIndex(index: number, options?: { includeFilename: boolean }): string | { fileName: string; content: string }

Fetch art by its zero-based index.

Clipboard Helpers

  • copyRandomAsciiArtToClipboard(): void
  • copyAsciiArtByNameToClipboard(name: string): void
  • copyAsciiArtByIndexToClipboard(index: number): void

Environment Variables

Set BOYKISSER_ALLOW_NSFW=true to allow NSFW art if you prefer not to pass the option in code.


Usage as a CLI Tool

After installation or via npx, run:

boykisser [options]
Usage: boykisser [options]

Options:
  -c, --copy             Copy the ASCII art content to the clipboard instead of displaying it.
  -n, --nsfw             Allow NSFW ASCII art.
  --name <name>, --id <name>    Get ASCII art by its file name (without `.txt`).
  --index <index>        Get ASCII art by its index (zero-based).
  -V, --version          Show version number.
  -h, --help             Display help for command.

Examples

# Display a random art
npx boykisser

# Copy a random art to clipboard
npx boykisser --copy

# Include NSFW art in rotation
npx boykisser --nsfw

# Get art by filename
npx boykisser --name c41277f57a66a917

# Copy art by filename
npx boykisser --name c41277f57a66a917 --copy

# Get art by index
npx boykisser --index 0 --nsfw

# Copy art by index with NSFW allowed
npx boykisser --index 5 --copy --nsfw

Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check issues or submit a pull request.

License

MIT © fishylunar