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

@crowi/plugin-renderer-emoji

v0.1.0-alpha.0

Published

Emoji shortcode renderer for Crowi 2.x. Replaces `:smile:` and friends with Unicode emoji via remark-emoji. Skips code blocks and inline code.

Readme

@crowi/plugin-renderer-emoji

Emoji shortcode renderer for Crowi 2.x. Replaces :smile: / :rocket: / :thumbs_up: style shortcodes with their Unicode emoji counterparts via remark-emoji.

No I/O. No cache. Pure text-level transform.

What it does

Given a page body containing Hello :smile: world!, the plugin rewrites the paragraph's text nodes so the rendered output is Hello 😄 world!.

Known shortcodes come from node-emoji's standard list (the GitHub shortcode set + Unicode CLDR aliases). Unknown shortcodes (:not-emoji:) pass through verbatim — no user-visible breakage on typos.

Skipped content

  • Fenced code blocks (```...```) — :smile: inside a code fence stays as :smile:.
  • Inline code (`:smile:`) — same.

This is remark-emoji's default — it walks text nodes inside phrasing content but never descends into code / inlineCode.

Accessibility

The plugin enables accessible: true, which wraps each emoji in <span role="img" aria-label="<name>">. Screen readers announce the emoji's CLDR name rather than reading the raw codepoint.

Install

Bundled in the Crowi monorepo:

pnpm --filter @crowi/api add -D @crowi/plugin-renderer-emoji
# or in a standalone runner:
npm install @crowi/plugin-renderer-emoji

Configure

Enable in crowi.config.json

{
  "plugins": [
    "@crowi/plugin-renderer-emoji"
  ]
}

A server restart is required for plugin-list changes.

Per-plugin config

None — the defaults (accessible: true, emoticon: false, padSpaceAfter: false) are baked in at registration time. If you need to tune them, the plugin is small enough to fork (Phase 6 keeps the API minimal; per-plugin admin UI extension is Phase 7+).

Default on/off matrix

| Install kind | Recommended | How to apply | |-----------------------------|-------------|----------------------| | Fresh Crowi 2.x install | ON | List in plugins. | | Migrated v1 install | ON | Same as fresh; emoji shortcodes worked in v1 via emojify.js so existing content continues to render. |

Out of scope (Phase 6)

  • Skin-tone modifiers / ZWJ sequences (:family_woman_woman_girl_boy:) — node-emoji's standard shortcode set only. Compound emojis can still be typed as Unicode directly.
  • Custom emoji upload (à la Slack) — Phase 7+.
  • Per-org / per-page enable toggle — Phase 7+.

See also

  • remark-emoji — upstream remark plugin.
  • node-emoji — shortcode → Unicode table this plugin transitively consumes.