npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

errman

v0.0.2

Published

Error types/helpers

Downloads

27

Readme

errman

Build Status

errman is an error helper that lets you:

  • Create custom error types that extend from Error and have a proper stacktrace.
  • Register your custom error types with a default error registry, or create a new errman instance to scope your error registry.
  • Use mustache-style templates to set a common error message for all instances of your error type. Supply an options object with your new error, and the key/value pairs are used in your message template. This way, you can have consistent error messages and only have to change the template in one place.
  • Convert error instances to JSON objects for serializing over HTTP.
  • Convert JSON error objects back to error instances for deserializing from HTTP.
  • Set a status code for error types to relate to HTTP status codes.

Installation

npm

npm install errman

component

component install errman

Usage

Create an error type

var errman = require('errman');

// Create a type with no message template and status code of 500.
var BadMojoError = errman.type('BadMojoError');

// You can pass a string to your custom error constructor to just set the error
// message old school.
throw new BadMojoError('No way, dude!');

Create an error type with an error template and status code

var errman = require('errman');

// Use mustache template for error message, and set status code to 404.
var FileNotFoundError = errman.type('FileNotFoundError', {
  message: 'Could not find file: {{filePath}}',
  status: 404
});

try {
  throw new FileNotFoundError({filePath: '/some/file/path.txt'}); 
} catch (e) {
  console.log(e.message);
}

The error message printed to the console will be:

Could not find file: /some/file/path.txt

Register an error type

var errman = require('errman');

errman.registerType('BadMojoError');
errman.registerType('FileNotFoundError', {
  message: 'Could not find file: {{filePath}}',
  status: 404
});

// Registered errors are available on the errman module.
throw new errman.BadMojoError;
throw new errman.FileNotFoundError({filePath: '/some/file/path.txt'}); 

Create a new errman scope

var errman = require('errman');

errman.registerType('BadMojoError');

var myErrMan = errman();

myErrMan.registerType('FileNotFoundError', {
  message: 'Could not find file: {{filePath}}',
  status: 404
});

throw new errman.BadMojoError;
throw new myErrMan.FileNotFoundError({filePath: '/some/file/path.txt'});
// This won't work:
throw new myErrMan.BadMojoError;
// Neither will this:
throw new errMan.FileNotFoundError({filePath: '/some/file/path.txt'});

Serialize error to JSON

var errman = require('errman');

errman.registerType('FileNotFoundError', {
  message: 'Could not find file: {{filePath}}',
  status: 404,
  code: 'file_not_found'
});

try {
  throw new FileNotFoundError({filePath: '/some/file/path.txt'}); 
} catch (e) {
  console.log(e.toJSON());
}

The JSON will be:

{
  "name": "FileNotFoundError",
  "status": 404,
  "code": "file_not_found",
  "message": "Could not find file: /some/file/path.txt"
  "detail": {
    "filePath": "/some/file/path.txt"
  }
}

If you want to provide the stacktrace in the JSON, do this:

console.log(e.toJSON(true));

Deserialize an error from JSON

The simplest way to deserialize an error is:

var err = errman.toError({
  "name": "FileNotFoundError",
  "status": 404,
  "code": "file_not_found",
  "message": "Could not find file: /some/file/path.txt"
  "detail": {
    "filePath": "/some/file/path.txt"
  }
});

assert(err instanceof errman.FileNotFoundError); // true

This may be fine in some cases. However, note that in the example above, the stacktrace was not in the JSON, so the stack will be reported as some place in the errman source, where the error is created. If you want the stacktrace to be where you deserialize the error, then you'll need to do this:

var err = new errman.Error({
  "name": "FileNotFoundError",
  "status": 404,
  "code": "file_not_found",
  "message": "Could not find file: /some/file/path.txt"
  "detail": {
    "filePath": "/some/file/path.txt"
  }
});

assert(err instanceof errman.FileNotFoundError); // false

This leverages the default Error constructor available on all errman instances. However, note that the error is (of course) not of the specific type. You can combine these together though like this:

var err = errman.toError(new errman.Error({
  "name": "FileNotFoundError",
  "status": 404,
  "code": "file_not_found",
  "message": "Could not find file: /some/file/path.txt"
  "detail": {
    "filePath": "/some/file/path.txt"
  }
}));

assert(err instanceof errman.FileNotFoundError); // true

This creates an error with the appropriate stacktrace and then converts it into a specifically typed error. You can also use some method sugar:

var err = new errman.Error({
  "name": "FileNotFoundError",
  "status": 404,
  "code": "file_not_found",
  "message": "Could not find file: /some/file/path.txt"
  "detail": {
    "filePath": "/some/file/path.txt"
  }
}).typed();

assert(err instanceof errman.FileNotFoundError); // true