logless

0.0.8 • Public • Published

Logless

Parses JavaScript code for specific objects/namespaces/calls and removes them. Designed to automatically remove logging from production code. Built on top of UglifyJS.

Still In Beta

Install

$ npm install logless [-g]

The -g flag should be used for CLI usage. If you try to install locally, it will complain that it wants to be global, but it will be fine for progmatic use.

Progmatic Usage

var logless = require('logless');
 
// ...

Parsing Code

var parsedCode = logless.parse(jsCodeString, ['console.log', 'alert']);

Parsing A File's Contents

// Async file read
logless.parse.file('/path/to/file.js', ['console.log', 'alert'], function(err, parsedCode) {
    // ...
});
 
// Sync file read
var parsedCode = logless.parse.fileSync('/path/to/file.js', ['console.log', 'alert']);

CLI Usage

$ logless [--input <in-file>] [--output <out-file>] --names <names>...

If --input is omitted, JavaScript code is read from stdin. If --output is omitted, the result is sent to stdout.

MIT License

Copyright (C) 2012 James Brumond

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.8
    1
    • latest

Version History

Package Sidebar

Install

npm i logless

Weekly Downloads

13

Version

0.0.8

License

none

Last publish

Collaborators

  • k
  • tauren