Disk Auditor
@svendowideit/disk-auditorv2026.07.18.1784335556
01README
Recursively audits which directories and files are consuming disk space under a path — cross-OS (Linux/macOS/Windows) via Deno runtime APIs, no du/find.
02Models
@svendowideit/disk-auditorv2026.07.17.1disk_auditor.ts
Global Arguments
| Argument | Type | Description |
|---|---|---|
| path | string | Filesystem path to audit |
fn audit(excludePatterns: array, followSymlinks: boolean, minNotableBytes: number)
Recursively measure disk usage under the configured path
| Argument | Type | Description |
|---|---|---|
| excludePatterns | array | Glob-style directory names to skip (e.g. ["node_modules", ".git"]) |
| followSymlinks | boolean | Whether to follow symbolic links when summing sizes (default false) |
| minNotableBytes | number | Minimum size for a file or dir to be considered 'notable' (default 1 MiB) |
Resources
audit(infinite)— Disk usage audit for a path
03Reports
@svendowideit/disk-summarymethod
disk_audit_report.ts
Format disk audit results as a human-friendly summary table
disksummary
04Previous Versions
2026.07.17.1Jul 17, 2026
05Stats
B
85 / 100
Downloads
0
Archive size
42.0 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types (deprecated)1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository0/2missing
06Platforms