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

console-sanitizer

v0.1.1

Published

Interactive CLI to detect, report, and remove console.* statements from JS/TS projects.

Readme

Console Sanitizer

A safe, interactive CLI that detects, reports, and removes console.* statements from JavaScript and TypeScript projects before shipping.

Why This Tool Exists

Every team ships with a few stray console.logs. This CLI makes cleanup fast, safe, and explicit, without reformatting entire files or relying on brittle regexes.

Features

  • Interactive, guided cleanup flow
  • AST-based detection (no regex)
  • Environment-aware defaults
  • Inline directives: // @keep and // @remove
  • Dry-run by default with explicit confirmation
  • Optional backups in .clearconsole-backup/
  • Works with JS, TS, JSX, TSX

Install And Run

npm i console-sanitizer

Add a script in your project:

{
  "scripts": {
    "clear": "clear-console"
  }
}

Then run:

npm run clear

Example CLI Flow

  • Welcome message
  • Project type detection (JS / TS / React / Next / Vite)
  • Scope selection (file, folder, project)
  • Environment selection (development / production)
  • Console types selection
  • Dry-run analysis and summary
  • Confirmation before changes

Environment Behavior

  • Development
    • Keep console.log
    • Remove console.debug, console.info
  • Production
    • Remove console.log, console.debug, console.info
    • Keep console.warn, console.error

You can always customize the removal list in the prompt or config.

Inline Directives

  • Keep a line:
console.log("keep this") // @keep
  • Force remove:
console.log("remove this") // @remove

Config File (Optional)

Create clearconsole.config.json in your project root:

{
  "environment": "production",
  "remove": ["log", "debug", "info"],
  "keep": ["warn", "error"],
  "dryRun": true,
  "respectComments": true,
  "backup": false
}

CLI Flags

  • --ci: no prompts (use config/defaults)
  • --yes: auto-confirm changes
  • --prod / --dev: set environment
  • --dry-run: scan without changes
  • --apply: apply changes without a dry run
  • --file <path>: target a single file
  • --dir <path>: target a folder
  • --all: target entire project
  • --remove log,debug: set removal list
  • --keep warn,error: set keep list
  • --backup: write .clearconsole-backup/
  • --no-respect-comments: ignore @keep and @remove

Safety Features

  • Dry-run by default
  • Explicit confirmation before modifying files
  • Optional backups of changed files
  • Ignores node_modules, build folders, and .clearconsole-backup/

ESLint / Babel Comparison

  • ESLint rules like no-console help prevent new logs, but they do not remove existing ones.
  • Babel or SWC plugins can remove logs during bundling, but they do not clean the source itself.
  • This tool is for fast, explicit cleanup of your project source when you decide to ship.

License

MIT