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 🙏

© 2026 – Pkg Stats / Ryan Hefner

yaeeh

v0.6.0

Published

yet another express error handler

Readme

yaeeh - yet another express error handler

A small library for error handling in express. With Default Api-Errors predefined.

Installation

$ npm install --save yaeeh

Development

API

Error are classes which inherit from the javascript standard error. Stacktrace etc is given as normal.

/predefined/Error(message, code)

Every error can be instantiated with a custom message and a custom error code like 'ERR_CUSTOM_ERROR_CODE'. The http number codes are fixed to the standard http codes.

/**
 * Every error can have alternative messages, alternative error codes or both.
 *
 * const someError = new <defined>Error('alternative message');
 * const someError = new <defined>Error('alternative message', 'alternative error code');
 * const someError = new <defined>Error(null, 'alternative error code only');
 */

/**
 * NotImplementedError
 *
 * default status code: 501
 * default error code: ERR_NOT_IMPLEMENTED
 * default message: This resource is not implemented yet.
 */
const notImplementedError = new NotImplementedError();

/**
 * UnauthorizedError
 *
 * default status code: 401
 * default error code: ERR_NOT_AUTHORIZED
 * default message: You are not authorized to access this resource.
 */
const unauthorizedError = new UnauthorizedError();

/**
 * NotFoundError
 *
 * default status code: 404
 * default error code: ERR_NOT_FOUND
 * default message: This requested resource was not found.
 */
 const notFoundError = new NotFoundError();

 /**
  * BadRequestError
  *
  * default status code: 400
  * default error code: ERR_BAD_REQUREST
  * default message: Bad request.
  */
 const badRequestError = new BadRequestError();

###ApiError(message, status, code)

If you need to create completly customized errors with an own http status code you can use the ApiError and extend it or simple create an error with the right parameters.

/**
 * ApiError
 *
 * This error type is the base for the error handler and can be completly customized.
 */
const apiError = new ApiError('My very own Api error.', 123, 'ERR_VERY_OWN');

class SomeError extends ApiError {
  constructor() {
    super('An error with fixed parameters.', 400, 'ERR_FIXED_CODE');
  }
}

TODOs

  • [ ] add more Errors
  • [x] export responses for test via supertest for example

License

MIT © Alexander Braunreuther