npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

strip-debug-cli

4.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:1235
$ npm install strip-debug-cli
DailyWeeklyMonthlyYearly

strip-debug-cli

Strip console, alert, and debugger statements from JavaScript code

Useful for making sure you didn't leave any logging in production code.

Install

npm install --global strip-debug-cli

Usage

$ strip-debug --help

  Usage
    $ strip-debug <input-file> > <output-file>
    $ cat <input-file> | strip-debug > <output-file>

  Examples
    $ strip-debug src/app.js > dist/app.js
    $ cat src/app.js | strip-debug > dist/app.js

Related

  • strip-debug - API for this module