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

emojigoio

v1.0.0

Published

Multilingual emoji search library with 3600+ emojis in 23 languages. Fast, lightweight, zero dependencies.

Readme

🚀 emojigoio

Multilingual emoji search library — 3,600+ emojis in 23 languages

Fast, lightweight, zero dependencies.

npm version license

Website · npm · GitHub


Features

  • 🌍 23 languages — Turkish, English, German, French, Hindi, Arabic, Russian, and 16 more
  • Fast search — Search by name, keywords, or shortcode in any language
  • 📦 Zero dependencies — Lightweight and self-contained
  • 🎯 9 categories — Smileys, People, Animals, Food, Travel, Activities, Objects, Symbols, Flags
  • 🔤 TypeScript — Full type definitions included
  • 🌳 Tree-shakeable — Import only what you need

Install

npm install emojigoio

Quick Start

import { search, getInfo, random, getCategories } from 'emojigoio'

// Search in English (default)
search('heart')
// → [{ emoji: '❤️', name: 'Red Heart', ... }, { emoji: '💜', name: 'Purple Heart', ... }]

// Search in Turkish
search('kalp', { locale: 'tr' })
// → [{ emoji: '❤️', name: 'Kırmızı Kalp', ... }]

// Search in Arabic
search('قلب', { locale: 'ar' })
// → [{ emoji: '❤️', name: 'قلب أحمر', ... }]

// Get emoji info
getInfo('😀')
// → { emoji: '😀', name: 'Grinning Face', unicode: 'U+1F600', category: 'smileys-emotion', ... }

// Random emoji
random()
// → { emoji: '🎉', name: 'Party Popper', ... }

// List categories
getCategories('de')
// → [{ slug: 'smileys-emotion', icon: '😀', name: 'Smileys & Emotionen' }, ...]

API

search(query, options?)

Search emojis by name, keywords, or shortcode.

| Option | Type | Default | Description | |--------|------|---------|-------------| | locale | string | 'en' | Language for search | | category | string | — | Filter by category slug | | limit | number | 50 | Max results |

// Filter by category
search('love', { category: 'smileys-emotion', limit: 10 })

// Search in Hindi
search('दिल', { locale: 'hi' })

getInfo(emoji, locale?)

Get detailed info for a single emoji character.

getInfo('🔥')       // English
getInfo('🔥', 'fr') // French

getByCategory(slug, locale?)

Get all emojis in a category.

getByCategory('food-drink')
getByCategory('animals-nature', 'tr')

getCategories(locale?)

List all categories with localized names.

getAll(locale?)

Get all 3,600+ emojis with localized names.

random(locale?)

Get a random emoji.

loadLocale(locale)

Preload a locale's translation data. Returns true if successful.

loadLocale('tr') // Preload Turkish

Supported Languages

| Code | Language | Code | Language | |------|----------|------|----------| | en | English | ar | العربية | | tr | Türkçe | ru | Русский | | de | Deutsch | hi | हिन्दी | | fr | Français | ur | اردو | | id | Indonesia | vi | Tiếng Việt | | th | ไทย | fa | فارسی | | bn | বাংলা | sw | Kiswahili | | my | မြန်မာ | ha | Hausa | | uz | Oʻzbek | am | አማርኛ | | mr | मराठी | te | తెలుగు | | jv | Jawa | ku | Kurdî | | fil | Filipino | | |

Categories

| Slug | Icon | Example | |------|------|---------| | smileys-emotion | 😀 | 😂 😍 🥺 😭 | | people-body | 👋 | 👍 💪 🙏 🤷 | | animals-nature | 🐶 | 🦁 🌸 🌊 🌈 | | food-drink | 🍕 | 🍔 🍣 ☕ 🍰 | | travel-places | ✈️ | 🚀 🏖️ 🗼 🌍 | | activities | ⚽ | 🎮 🎨 🎵 🏆 | | objects | 💡 | 📱 💻 📚 🔑 | | symbols | ❤️ | ✅ ♻️ ⚡ ☮️ | | flags | 🏳️ | 🚩 🏁 |

Emoji Data

Emoji data is sourced from Unicode CLDR and curated by the Emojigo team. Names and keywords are available in 23 languages with native translations.

License

MIT © Emojigo


Data powered by Emojigo.io — The multilingual emoji encyclopedia 🚀