npm.io
1.4.0 • Published 1 week ago

@debugbundle/redaction

Licence
AGPL-3.0-only
Version
1.4.0
Deps
0
Size
42 kB
Vulns
0
Weekly
0

@debugbundle/redaction

Sensitive-data redaction helpers used by DebugBundle SDKs and ingestion flows.

This package provides the shared payload scrubbing primitives that remove secrets and other unsafe fields before data leaves a process.

Install

Published package:

npm install @debugbundle/redaction

Example

import { redact } from "@debugbundle/redaction";

const sanitized = redact({
  authorization: "Bearer secret",
  password: "super-secret",
  safe: "ok"
});

Notes

  • Published from the core-owned shared-package release workflow in debugbundle/debugbundle.
  • Most applications consume this transitively through a DebugBundle SDK package.