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

@eibens/emoji-list

v1.0.1

Published

This repository contains a list of all emoji metadata scraped from [this website *(WARNING: downloads 27 MB)*](https://unicode.org/emoji/charts/full-emoji-list.html). I made this because I could not find any readily available list with both names AND unic

Downloads

10

Readme

emoji list

This repository contains a list of all emoji metadata scraped from this website (WARNING: downloads 27 MB). I made this because I could not find any readily available list with both names AND unicode codepoints. You can use this list together with your favorite emoji set:

The list is a JSON array of objects, each with a category, subcategory, name, and array of codes. Here are the first two emojis from emoji.json as an example:

[
  {
    "category": "Smileys & Emotion",
    "subcategory": "face-smiling",
    "name": "grinning face",
    "codes": [
      "1F600"
    ]
  },
  {
    "category": "Smileys & Emotion",
    "subcategory": "face-smiling",
    "name": "grinning face with big eyes",
    "codes": [
      "1F603"
    ]
  }
]

npm

You can get the list from npm:

npm install @eibens/emoji-list

The emoji list object is the default export of the package:

import emojiList from '@eibens/emoji-list'

emojiList.forEach(emoji => console.log(emoji.name))

Do it yourself

You can export the list yourself, if you wish. The steps were tested and work in newest Firefox and Google Chrome:

  1. Copy the source code below.
  2. Go to this website (WARNING: downloads 27 MB)
  3. Open the browser console (F12 or right click and Inspect Element).
  4. Paste the source code into the console and press Enter.
  5. Wait a few seconds until the console outputs emojis gathered!.
  6. The emoji list is now in your clipboard and you can paste it anywhere.
format = false // change to `true` if you want formatted output
copy((format => {
  function Xs (node, path) {
    const result = node.ownerDocument
      .evaluate(path, node, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null)
    const nodes = []
    let n
    while (n = result.iterateNext()) nodes.push(n)
    return nodes
  }
  function XText (node, path) {
    return Xs(node, path)[0].textContent
  }
  const list = Xs(document.body, '//tr[td]').map(tr => ({ 
    category: XText(tr, '(preceding::tr/th[@class="bighead"])[last()]'),
    subcategory: XText(tr, '(preceding::tr/th[@class="mediumhead"])[last()]'),
    // must replace '⊛' in name of recently added emojis 
    name: XText(tr, 'td[last()]').replace(/⊛/, '').trim(),
    // multiple codes in single anchor tag
    codes: XText(tr, 'td[2]/a').split(' ').map(code => code.substr(2))
  }))
  return JSON.stringify(list, null, format ? 2 : null)
})(format))
console.log('emojis gathered!')

Contact

:pencil: Lukas Eibensteiner :e-mail: [email protected] :package: eibens/emoji-list