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

@igorskyflyer/encode-entities

v2.0.1

Published

๐Ÿƒโ€โ™‚๏ธ Fast and simple Map and RegExp based HTML entities encoder. ๐Ÿ

Readme

๐Ÿ“ƒ Table of Contents

๐Ÿค– Features

  • โšก Instant HTML encoding for special characters
  • ๐Ÿ›  Add your own custom encoding rules
  • โ™ป Reset back to default rules anytime
  • โœ๏ธ Update individual rules on the fly
  • โŒ Remove unwanted rules easily
  • ๐Ÿ“Š See exactly how many rules are active
  • ๐Ÿš€ Singleโ€‘pass, highโ€‘performance replacement engine (powered by @igorskyflyer/mapped-replacer)

๐Ÿ›ก SECURITY

Encoding of special characters into HTML entities helps mitigate XSS risks in the textual layer by ensuring userโ€‘supplied content is treated as text, not executable code.

Note: not a full XSS solution, usage of other XSS-prevention techniques is still required.

๐Ÿ•ต๐Ÿผ Usage

Install it by executing any of the following, depending on your preferred package manager:

pnpm add @igorskyflyer/encode-entities
yarn add @igorskyflyer/encode-entities
npm i @igorskyflyer/encode-entities

๐Ÿคน๐Ÿผ API

๐Ÿ’ก TIP

Encoded by default: <, >, ", ', &, =, `, !, @, $, %, (, ), +, {, }, [, ].

You can however remove any of these rules and/or add your own.

resetRules(): void

Resets the rules to the default ones.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()

encoder.updateRule('๐Ÿ˜€', '<')
encoder.updateRule('๐Ÿ˜‚', '>')
encoder.resetRules()

console.log(encoder.encode('<strong>')) // outputs '&#60;strong&#62;'

addRule(key: string, value: string): boolean

Adds a new rule for entities encoding. Returns true if the rule was added successfully or false if not.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()
encoder.addRule('&#8594;', 'โ†’')

console.log(encoder.encode('<a href="#">โ†’</a>')) // outputs '&#60;a href&#61;&#34;#&#34;&#62;&#8594;&#60;/a&#62;'

updateRule(replaceWith: string, searchFor: string): boolean

Updates an existing rule for entity encoding. Returns true if the rule was updated successfully or false if not.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()
encoder.addRule('&#8592;', 'โ†’')
encoder.updateRule('&#8594;', 'โ†’')

console.log(encoder.encode('<a href="#">โ†’</a>')) // outputs '&#60;a href&#61;&#34;#&#34;&#62;&#8594;&#60;/a&#62;'

addRules(rules: Object): boolean

Adds rules for entity encoding. Passed object is a simple key-value object, i.e. { '<': '&#60;', '>': '&#62;' } Returns true if the rules were added successfully or false if not.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()

encoder.addRules({
  '&#120139;':'๐•‹'
  '&#8776;':'โ‰ˆ'
  '&#120113;':'๐”ฑ'
})

console.log(encoder.encode('<span>๐•‹ โ‰ˆ ๐”ฑ</span>')) // outputs '&#60;span&#62;&#120139; &#8776; &#120113;&#60;/span&#62;'

removeRule(key: string): boolean

Removes the rule that matches the provided key. Returns true if the rule was removed successfully or false if not.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()

encoder.addRules({
  '&#120139;': '๐•‹',
  '&#8776;': 'โ‰ˆ',
  '&#120113;': '๐”ฑ'
})
encoder.removeRule('โ‰ˆ')

console.log(encoder.rulesCount()) // outputs 20

rulesCount(): number

Gets the number of rules for entity encoding.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()

encoder.addRules({
  '&#120139;': '๐•‹',
  '&#8776;': 'โ‰ˆ',
  '&#120113;': '๐”ฑ',
})

console.log(encoder.rulesCount()) // outputs 21

encode()

Encodes special characters in the given string to HTML entities.

import { Encoder } from '@igorskyflyer/encode-entities'

const encoder: Encoder = new Encoder()

console.log(encoder.encode('<strong>')) // outputs '&#60;strong&#62;'

๐Ÿ“ Changelog

๐Ÿ“‘ The changelog is available here, CHANGELOG.md.

๐Ÿชช License

Licensed under the MIT license which is available here, MIT license.

๐Ÿ’– Support

๐Ÿงฌ Related

@igorskyflyer/str-is-in

๐Ÿงต Provides ways of checking whether a String is present in an Array of Strings using custom Comparators. ๐Ÿ”

@igorskyflyer/aria

๐Ÿงฌ Meet Aria, an efficient Adblock filter list compiler, with many features that make your maintenance of Adblock filter lists a breeze! ๐Ÿ—ก

@igorskyflyer/pathexists

๐Ÿงฒ Provides ways of properly checking if a path exists inside a given array of files/directories both on Windows and UNIX-like operating systems. ๐Ÿ—บ

@igorskyflyer/chars-in-string

๐Ÿช Provides ways of testing whether an array of chars is present inside a given String. โ˜„

@igorskyflyer/valid-path

๐Ÿงฐ Provides ways of testing whether a given value can be a valid file/directory name. ๐Ÿœ

๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Author

Created by Igor Dimitrijeviฤ‡ (@igorskyflyer).