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

phi-pii-deid

v0.1.0

Published

Offline share-safe helper for scanning, redacting, verifying, and reporting likely PHI/PII in FHIR JSON artifacts.

Downloads

16

Readme

phi-pii-deid

Offline TypeScript CLI for scanning and redacting likely PHI/PII from local FHIR JSON artifacts before sharing them in tickets, tests, demos, or debug notes.

This is a deterministic share-safe helper, not certified HIPAA/CMS de-identification and not an anonymization tool.

Quick Start

npm install
npm test
npm run build
node dist/cli.js scan test/fixtures/synthetic-fhir-bundle.json
node dist/cli.js deidentify test/fixtures/synthetic-fhir-bundle.json --out /tmp/sanitized-fhir.json
node dist/cli.js verify /tmp/sanitized-fhir.json
node dist/cli.js report /tmp/sanitized-fhir.json --out /tmp/sanitized-fhir-report.md

report writes both Markdown and CSV:

/tmp/sanitized-fhir-report.md
/tmp/sanitized-fhir-report.csv

Use --csv-out <file.csv> for a custom CSV path.

Commands

phi-pii-deid scan <file> [--mode default|strict-safe-harbor]
phi-pii-deid deidentify <file> --out <file> [--mode default|strict-safe-harbor]
phi-pii-deid verify <file> [--mode default|strict-safe-harbor]
phi-pii-deid report <file> --out <file.md> [--csv-out <file.csv>] [--mode default|strict-safe-harbor] [--cms-report]

From source, use node dist/cli.js ... instead of phi-pii-deid ....

Modes

Default mode redacts common FHIR PHI/PII while preserving useful debugging structure:

  • names, addresses, telecom, email, phone
  • birth dates, exact timestamps
  • identifiers, MRN-like values, SSN-like values
  • URLs/references
  • free-text notes and narrative text

Strict mode adds broader HIPAA Safe Harbor-style checks:

node dist/cli.js deidentify input.json --out output.json --mode strict-safe-harbor

Additional strict checks include dates except year, ages over 89, fax, health plan beneficiary numbers, account numbers, license/certificate numbers, vehicle IDs, device IDs, IPs, biometrics, and image/attachment-like fields.

--cms-report suppresses small aggregate report counts from 1-10 as <11 in Markdown summaries. It does not perform full CMS output review.

Limits

The tool uses local deterministic rules only. It can miss PHI/PII in unusual fields, encoded payloads, attachments, images, custom extensions, or free text that does not match a rule.

Do not use real company data, production logs, tenant IDs, patient IDs, or internal workflow examples in public demos/tests. Fixtures in this repo are synthetic only.