Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

pruddy-error

bigpipe17.3kBSD2.0.2

Prettify given error object

error, pretty, prettify

readme

This is a clone of the `prettify-error` module which was unpublished by the
author. All dependencies have been inlined to prevent future conflicts.

pruddy-error

Prettify given error objects for console outputs

Install

$ npm install pruddy-error

Usage

var pruddy = require('pruddy-error');
var error = new Error('lorem ipsum');

console.error(pruddy(error) || error);

If you'd like to skip some lines from the stack:

pruddy(error, {
  shift: 2  // Will start reading the stack from the third line.
})