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

telegram-emoji-sprites

v1.1.0

Published

Create Telegram-esque emoji sprites on the fly

Readme

telegram-emoji-sprites Build Status

Create Telegram-esque emoji sprites on the fly

Requirements

Emoji images have to be:

  • Called with the emoji Unicode code.
    • If the emoji is composed by multiple characters the codes have to be separated with a hyphen (-).
  • In PNG format.
  • 66px in width and 66px in height.

Examples: 1f981.png, 1f937-1f3fc-2642.png, etc.

Install

$ npm install --global telegram-emoji-sprites

Usage

$ telegram-emoji-sprites --help

  Create Telegram-esque emoji sprites on the fly

  Usage
    $ telegram-emoji-sprites [option] [folder]

  Get emoji images from the current folder by default

  Options
    --destination, -d  Folder where sprites will be placed, default: ./sprites
  	--key, -k          TinyPNG API key (get one from https://goo.gl/w2NaRS)

Options

  • --destination <path> - Set destination folder, it is created at runtime.
  • --key <api-key> - Use the provided key to authenticate requests to TinyPNG's API. You can get one from here, it's free if you do less than 500 optimizations/month. If the option is not used no image will be compressed.
  • --version - Print the current version.
  • --help - Print the help menu.

Example

Install GraphicsMagick. Download EmojiOne's emoji set, the 64x64px one, extract it somewhere and cd into it, then run:

gm mogrify -output-directory ./emojione -bordercolor transparent -border 1x1 *.png

telegram-emoji-sprites ./emojione

Now check out ./sprites and enjoy.

Changelog

v1.1.0

  • ✨ - No more errors while generating sprites (not due to missing images at least 😅), files existence is checked before, adds ~50ms.
  • ✨ - Sprites can be compressed before being saved on disk thanks to TinyPNG's magic 🐼, it can save up to ~90% in image size.
  • ✨ - Get update notifications, don't miss any patch or major update!
  • 📝 - Last but not least, listr output is now less verbose.

v1.0.1

  • 🚑 - The CLI app was using paths relative to its installation folder, not anymore!
  • 🚑 - Global installation was causing an error due to meow, now it's installing as a tarball.

v1.0.0

  • 🎉 - Initial release.

License

MIT © Raul Macarie