silent-error

1.1.1 • Public • Published

silent-error Build Status

An error subclass for humanized errors. This module allows for inter-module detection of errors which are fatal, but where a stacktrace by default provides negative value.

Some use-cases:

  • command in your CLI tool is missing
  • plugin to your build system is given invalid user-input.

Obviously stack traces can still be valuable. To view the stacks, the following environment variable can be set to true

SILENT_ERROR=verbose <run program>

Example

// in one node module
async function runCommand(name) {
   // some logic
   throw new SilentError(`command: '${name}' is not installed`);
}
// in another node_module
async function caller() {
 
  try {
    await runCommand('foo');
  } catch(e) {
    SilentError.debugOrThrow(e);
  }
 
  SilentError.debugOrThrow
}

Installation

yarn add silent-error

or

npm install --save silent-error

Readme

Keywords

none

Package Sidebar

Install

npm i silent-error

Weekly Downloads

202,455

Version

1.1.1

License

ISC

Unpacked Size

3.38 kB

Total Files

4

Last publish

Collaborators

  • stefanpenner