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

emojistry

v1.0.0

Published

Versioned emoji registry, Unicode ingestion, categorization, and search data for apps.

Downloads

209

Readme

emojistry

NPM Version API health

App-friendly emoji data, search helpers, and a hosted REST API backed by Unicode emoji data.

Emojistry provides a versioned emoji registry with normalized names, codepoints, Unicode groups, app categories, keywords, skin-tone metadata, and sequence metadata.

Install

npm install emojistry
bun add emojistry

Package Usage

Use the generated registry data directly from the package:

import snapshot from "emojistry/data";
import { groupByCategory, searchEmojis } from "emojistry";

const hearts = searchEmojis(snapshot.emojis, "heart");
const faces = groupByCategory(snapshot.emojis).faces;

Find a single emoji by emoji, slug, exact name, or codepoint:

import snapshot from "emojistry/data";
import { findEmoji } from "emojistry";

const rocket = findEmoji(snapshot.emojis, "rocket");
const grinning = findEmoji(snapshot.emojis, "U+1F600");

Parse and normalize Unicode emoji-test.txt data:

import { normalizeEmojiEntries, parseEmojiTest } from "emojistry";

const source = await fetch("https://unicode.org/Public/emoji/latest/emoji-test.txt").then((res) =>
	res.text(),
);
const emojis = normalizeEmojiEntries(parseEmojiTest(source));

Data Shape

interface EmojiRecord {
	emoji: string;
	codepoints: string[];
	qualification: "fully-qualified" | "minimally-qualified" | "unqualified" | "component";
	emojiVersion: string;
	name: string;
	group: string;
	subgroup: string;
	slug: string;
	category: EmojiCategory;
	keywords: string[];
	hasSkinTone: boolean;
	isSequence: boolean;
}

REST API

Hosted API:

https://api.emojistry.kfiros.com

Endpoints

GET /health
GET /health/badge
GET /v1
GET /v1/emojis
GET /v1/emojis/:emoji-or-slug-or-codepoint
GET /v1/search?q=heart
GET /v1/categories
GET /v1/categories/:category/emojis

List endpoints support:

limit=100
offset=0

GET /v1/emojis also supports:

q=heart
category=faces
group=Smileys%20%26%20Emotion
subgroup=face-smiling

Examples

curl https://api.emojistry.kfiros.com/health
curl https://api.emojistry.kfiros.com/health/badge
curl "https://api.emojistry.kfiros.com/v1/search?q=heart&limit=3"
curl https://api.emojistry.kfiros.com/v1/emojis/grinning-face

Categories

Emojistry maps Unicode groups to app-friendly categories:

faces
people
animals-nature
food-drink
travel-places
activities
objects
symbols
flags
components
other

Development

Project setup, data generation, package publishing, and deployment notes live in docs/development.md and docs/deployment.md.

License

MIT