wooster

0.5.0 • Public • Published

npm npm mac ubuntu windows

wooster

error detection, context and makeup 🎀

Before

After

Easy to use

CLI with pipes

npm install -g wooster
npm run build 2>&1 | wooster

As module

var wooster = require( 'wooster' )
var wp = wooster.parse( text )
if ( wp ) {
  console.log( wp.text ) // full wooster output message with context
 
  console.log( wp.context ) // only context
  console.log( wp.filename ) // filename
}
// grab context from text
var ctx = wooster.parseContext(
  {
    disableSourceMaps: false, // parse inline source maps by default
    prettify: true, // enable pretty/colored output
    text: fs.readFileSync( 'index.js', 'utf8' ),
    filename: 'index.js',
    lineno: 10,
    colno: 3
  }
)

About

Basic error log output parser.

Why

To easily see the source error and context.

How

By scoring each line, each url and each source position ( line and column ) in a variety of ways to determine if there is an error that could be parsed and then giving that error some context and giving it some makeup.

If no error is detected or parsing fails the input will be returned as output without changes.

Alternatives

pretty-error

Test

Tests against successful and error outputs from browserify, babelify, rollup, webpack, sass, less, stylus and some sample pm2 log error output.

npm test

Readme

Keywords

Package Sidebar

Install

npm i wooster

Weekly Downloads

4

Version

0.5.0

License

MIT

Unpacked Size

121 kB

Total Files

4

Last publish

Collaborators

  • talmobi