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

choas-card

v1.0.0

Published

Lars Gregori's CLI calling card

Readme

choas-card

A personalized CLI calling card for Lars Gregori, based on the M365 Princess CLI Card.

This project is a fork of the M365 Princess CLI Card by Luise Freese.

In case you ever need my information and all you have is a terminal and npm.

🚀 Usage

npx choas-card

That's it! No installation required.

📋 What You'll See

  • Custom ASCII portrait
  • CHOAS banner
  • Professional info (work, contacts, favorites)
  • Nord color styling
  • Links to all my profiles

🛠️ Build Your Own CLI Card

Want to create your own personalized CLI calling card? Here's how:

Prerequisites

  • Node.js installed
  • NPM account (for publishing)
  • A photo for ASCII art conversion

Step 1: Clone and Setup

git clone https://github.com/choas/choas-card.git
cd choas-card
npm install

Step 2: Create Your ASCII Art

  1. Convert your photo to ASCII:

    • Visit ASCII Art Generator
    • Upload your photo
    • Adjust settings for best results
    • Copy the generated ASCII art
  2. Create your portrait file:

    // art/portrait.js
    "use strict";
    
    export default `your-ascii-art-here`;

Step 3: Customize Your Profile

Edit config/profile.js:

export const profile = {
    name: "YOUR NAME",
    handle: "yourhandle",
    bio: "Your amazing bio here...",
    infoSections: [
        { label: "Work", value: ["Your Job Title", "Company"], style: "gradient" },
        { label: "Website", value: "yourwebsite.com", style: "purple" },
        { label: "GitHub", value: "https://github.com/yourusername", style: "purple" },
        // Add more sections...
    ]
};

Step 4: Update Colors

Customize bin/colors.js with your favorite colors:

export const colors = {
    pink: "#your-favorite-color",
    purple: "#your-secondary-color",
    // ... other colors
};

Step 5: Update Package Info

Edit package.json:

{
    "name": "your-unique-package-name",
    "description": "Your CLI calling card description",
    "bin": {
        "your-command": "bin/card.js"
    },
    "repository": {
        "url": "https://github.com/yourusername/your-repo.git"
    }
}

Step 6: Test Locally

node bin/card.js

Step 7: Publish to NPM

npm login
npm publish

Step 8: Test Published Version

npx your-package-name

🎨 Customization Options

ASCII Art Sources

  • ASCII Art Generator - Convert photos to ASCII
  • Create text banners with figlet
  • Draw your own ASCII art

Color Themes

  • Use hex colors in bin/colors.js
  • Create gradients with gradient-string
  • Style different sections independently

Profile Sections

Add any information you want:

  • Work experience
  • Social media links
  • Favorite things
  • Contact information
  • Fun facts

📁 Project Structure

├── bin/
│   ├── card.js          # Main CLI script
│   ├── colors.js        # Color definitions and styling
│   ├── text.js          # Text formatting utilities
│   └── render-info.js   # Info section rendering
├── config/
│   └── profile.js       # Your profile data
├── art/
│   ├── index.js         # Art asset loader
│   ├── banner.js        # Text banner
│   └── portrait.js      # ASCII portrait
├── package.json         # NPM package configuration
└── README.md            # This file

🔧 Dependencies

🎯 Inspiration & Credits

This project was inspired by and built upon the excellent work of:

Special thanks to ReverentGeek for creating such a well-structured, extensible, and thoroughly documented CLI card system. The project structure, color system, and rendering approach in this repository directly builds upon his excellent foundation.

🙏 Thank you David for making this so approachable and inspiring others to create their own CLI cards!

Check out the original: npx reverentgeek

📄 License

MIT License - feel free to use this as a template for your own CLI card!

🤝 Contributing

Found a bug or want to suggest an improvement? Open an issue or submit a PR!

Try my card: npx choas-card