0.1.1 • Published 10 years ago

error-stack-filter v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

Error Stack Filter

Filter Stack Traces from not useful files, like remove all node_modules files from trace

Usage

  • npm install error-stack-filter
  • var errorStackFilter = require('error-stack-filter');
  • returns singleton instance: ErrorStackFilter([], 20);

ErrorStackFilter ([ignoreFiles, stackLimit ])

  • setIgnoreFiles (Array ignoreFiles)
  • addIgnoreFiles (Array ignoreFiles) or addIgnoreFiles (ignoreFiles...)
  • removeIgnoreFiles (Array ignoreFiles) or removeIgnoreFiles (ignoreFiles)

Example

Error Stack Filter

Filter Stack Traces from not useful files, like remove all node_modules files from trace

Example

  var errorStackFilter = require('error-stack-filter')();
  errorStackFilter.setIgnoreFiles([
    path.resolve(__dirname, '/some_file.js'),
    /\/node_modules\//
  ], 10);

this will filter paths where node_modules exist and file __dirname/some_file.js

0.1.1

10 years ago

0.1.0

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago