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

emojico

v0.0.11

Published

CLI tool to convert emoji to favicon assets

Readme

emojico 🎨

A CLI tool that converts any emoji into a complete set of favicons and touch icons for your web projects.

Features

  • 🖼️ Generates favicon.ico with multiple sizes (16x16, 32x32, 48x48)
  • 📱 Creates Apple Touch Icons in all standard sizes
  • 🌐 Generates Open Graph image (og:image) at 1200x630
  • ✨ High-quality emoji rendering
  • 🎯 Perfect for quick favicon generation
  • 📦 Works with any emoji

Installation

# Install globally
npm install -g emojico

# Or use with npx
npx emojico 🚀

Usage

emojico <emoji> [--out <directory>] [--all]

Options

  • <emoji>: The emoji to convert (required)
  • -o, --out <directory>: Output directory for the generated assets (default: current directory)
  • --all: Generate all assets (favicon.ico, PNG favicons, and Apple touch icons)

Example

# Generate favicon.ico in the current directory
emojico 🍎

# Generate all assets (favicon.ico + PNG favicons + Apple touch icons) in current directory
emojico 🍎 --all

# Generate icons for an apple emoji in a specific directory
emojico 🍎 --out ./my-icons

# Generate all assets in a specific directory
emojico 🍎 --out ./my-icons --all

# Generate rocket favicon
emojico 🚀 --out ./rocket-icons

# Generate light bulb icons in a nested directory
emojico 💡 --out ./assets/icons

Output Structure

By default, the tool generates only favicon.ico. Use the --all flag to generate all assets.

Default Output (without --all)

output-directory/
└── favicon.ico             # Multi-size ICO file (16x16, 32x32, 48x48)

Complete Output (with --all)

output-directory/
├── favicon.ico             # Multi-size ICO file (16x16, 32x32, 48x48)
├── og-image.png            # Open Graph image (1200x630)
├── favicons/
│   ├── favicon-16x16.png
│   ├── favicon-32x32.png
│   └── favicon-48x48.png
└── apple-touch-icon/
    ├── apple-touch-icon-57x57.png
    ├── apple-touch-icon-60x60.png
    ├── apple-touch-icon-72x72.png
    ├── apple-touch-icon-76x76.png
    ├── apple-touch-icon-114x114.png
    ├── apple-touch-icon-120x120.png
    ├── apple-touch-icon-144x144.png
    ├── apple-touch-icon-152x152.png
    └── apple-touch-icon-180x180.png

HTML Usage

Add the following to your HTML <head> section:

<!-- Standard favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />

<!-- PNG favicon alternatives -->
<link
  rel="icon"
  type="image/png"
  sizes="16x16"
  href="/favicons/favicon-16x16.png"
/>
<link
  rel="icon"
  type="image/png"
  sizes="32x32"
  href="/favicons/favicon-32x32.png"
/>
<link
  rel="icon"
  type="image/png"
  sizes="48x48"
  href="/favicons/favicon-48x48.png"
/>

<!-- Apple Touch Icons -->
<link
  rel="apple-touch-icon"
  sizes="57x57"
  href="/apple-touch-icon/apple-touch-icon-57x57.png"
/>
<link
  rel="apple-touch-icon"
  sizes="60x60"
  href="/apple-touch-icon/apple-touch-icon-60x60.png"
/>
<link
  rel="apple-touch-icon"
  sizes="72x72"
  href="/apple-touch-icon/apple-touch-icon-72x72.png"
/>
<link
  rel="apple-touch-icon"
  sizes="76x76"
  href="/apple-touch-icon/apple-touch-icon-76x76.png"
/>
<link
  rel="apple-touch-icon"
  sizes="114x114"
  href="/apple-touch-icon/apple-touch-icon-114x114.png"
/>
<link
  rel="apple-touch-icon"
  sizes="120x120"
  href="/apple-touch-icon/apple-touch-icon-120x120.png"
/>
<link
  rel="apple-touch-icon"
  sizes="144x144"
  href="/apple-touch-icon/apple-touch-icon-144x144.png"
/>
<link
  rel="apple-touch-icon"
  sizes="152x152"
  href="/apple-touch-icon/apple-touch-icon-152x152.png"
/>
<link
  rel="apple-touch-icon"
  sizes="180x180"
  href="/apple-touch-icon/apple-touch-icon-180x180.png"
/>

<!-- Open Graph Image -->
<meta property="og:image" content="/og-image.png" />

Development

# Clone the repository
git clone https://github.com/threepointone/emojico.git
cd emojico

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

License

ISC

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.