-
Notifications
You must be signed in to change notification settings - Fork 0
Home
saleban olow edited this page Apr 24, 2025
·
2 revisions
Welcome to the official Purgo wiki! This wiki contains detailed documentation about Purgo, a zero-config, client-side log-scrubbing library that prevents Protected Health Information (PHI) from leaking into browser consoles, DevTools, and network debuggers.
- Installation Guide
- Usage Examples
- API Reference
- Framework Integrations
- Node.js Support
- HIPAA Compliance
- Contributing to Purgo
- Frequently Asked Questions
Purgo is a lightweight, zero-configuration library designed to help healthcare applications comply with HIPAA regulations by automatically redacting sensitive information from logs and network requests.
- 🔒 HIPAA-Friendly: Automatically redacts PHI from logs and network requests
- 🪶 Lightweight: < 7 kB gzip
- ⚡ Fast: < 3% runtime overhead
- 🔌 Zero-Config: Works out-of-the-box with React, Next.js, Vue, and vanilla JS
- 🧩 Extensible: Add custom patterns and redaction strategies
npm install purgo
// Just import it - that's it!
import 'purgo';
// Now all console logs and network requests will be automatically scrubbed
console.log('Patient email: patient@example.com'); // Outputs: "Patient email: ***"
For more detailed information, please explore the wiki pages linked above.