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

@hokkiai/discord-emoji-selector

v1.2.10

Published

A lightweight & powerful discord-style emoji picker

Readme

Installation

npm install @hokkiai/discord-emoji-selector

Usage

import EmojiSelector from "@hokkiai/discord-emoji-selector";
import "@hokkiai/discord-emoji-selector/fix.css"; // fixes if you don't have tailwind installed.

export default function App() {
  return <EmojiSelector />;
}

Props

categories

Customize the title and icon of each category.

Available categories: recentlyUsed, people, nature, food, activities, travel, objects, symbols, flags

You can set a name and icon for each category. The icon must be a React component.

Example:

categories: {
  recentlyUsed: {
    name: "Recently Used",
    icon: (
      <svg
        aria-hidden="true"
        role="img"
        xmlns="http://www.w3.org/2000/svg"
        width="24"
        height="24"
        fill="none"
        viewBox="0 0 24 24"
      >
        <path
          fill="currentColor"
          fillRule="evenodd"
          d="M12 23a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm1-18a1 1 0 1 0-2 0v7c0 .27.1.52.3.7l3 3a1 1 0 0 0 1.4-1.4L13 11.58V5Z"
          clipRule="evenodd"
        ></path>
      </svg>
    ),
  },
}

searchPlaceholder

The placeholder text for the search bar.

customEmojis

An object to add custom Discord server emojis:

  • serverName: Name of the server.
  • serverIconURL: URL of the server icon.
  • emojis: Array of emojis in Discord custom emoji markdown format (<:emoji:id>). Supports animated emojis.

height & width

Set the height and width of the emoji picker.

onEmojiSelect

Function called when an emoji is selected. Receives an object with:

  • name: Emoji name.
  • char: Emoji character.

toneSelector

Whether to show the tone selector. Defaults to true.

className

Custom class name for the emoji picker.

onEmojiMouseEnter & onEmojiMouseLeave

Functions called when the mouse enters or leaves an emoji.

showFooter

Whether to show the footer.

showNav

Whether to show the navigation bar.

showSidebar

Whether to show the sidebar.