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

obfuscate-js

v0.0.3

Published

Obfuscates a string by replacing some characters with an asterisk.

Readme

obfuscate-js

obfuscate-js replaces characters in a string with escape characters to hide the content from the viewer. Useful for displaying credit card numbers, social security numbers or other PII information on-screen.

Install

$ npm install obfuscate-js

Usage

const obfuscate = require('./obfuscate-js');

let fin = '';

let options = {
  full: true,
  length: 8,
  preserve: '$,.'
};

// Replace all but the last set of characters, retainin the separator
// returns: ***-**-0000
fin += obfuscate("000-00-0000", "-") + "\n";

// Replace all but the last set of characters, retaining the separator, but uses
// a hash/number symbol instead of an asterisk
// returns: ###-##-0000
fin += obfuscate("000-00-0000", "-", {character: '#'}) + "\n";

// Replace all characters in the string, but retain the separator
// returns: ***-**-****
fin += obfuscate("000-00-0000", "-", {full: true}) + "\n";

// Replace all characters in the string, including special characters
// returns: ********
fin += obfuscate("$200,000.00", "", {full: true}) + "\n";

// Replace all characters in the string, but preserve some formatting chars
// returns: ********
fin += obfuscate("$200,000.00", ",", options) + "\n";

// Return 8 escape characters instead of an empty string
// returns: ********
fin += obfuscate("", "", options) + "\n";

console.log(fin);

Parameters

obfuscate-js accepts the following parameters.

string (String = '')

The string value you wish to obfuscate or mask from the viewer.

separator (String = '')

The string value you wish to retain or that separates groups of characters.

Options Collection (Object = {})

Object defining additional parameters that overwrite the default behaviors of the formatter.

full (Boolean = false)

Boolean value (defaults to false) indicating whether or not to replace the entire string or all but the last set.

length (Number = 8)

Numeric value (defaults to 8 [eight]) indicating the number of characters to return if the string is empty.

preserve (String = '')

String values which you want to preserve in the final, formatted string. Include all characters you want to preserve with no spaces between. (e.g.: '$,.').

character (String = '*')

String value which will replace the current characters in the value parameter. Defaults to an asterisk.

license

ISC