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 🙏

© 2025 – Pkg Stats / Ryan Hefner

dl-exception-handler

v1.0.0

Published

Node Express exception handler middleware

Readme

Handle Express Exceptions

Handle exceptions in express with i18n support. The exception handler middleware can be easily plugged into any express application and catch any exceptions and show a formatted message to the client.

Dependencies

The library has two peer dependencies which the application should be having installed:

  • dotenv
  • express

Usage

The library can be used out of the box without much of a setup.

  1. Install the package
  2. Import the HttpException module from the library in the Application file.
import { HttpException } from 'exception-handler';
HttpException.configure();
  1. If you want to have support for Internationalization(i18n) in the response, You will need to give the folder path to where the language resource files are saved.
import { HttpException } from 'exception-handler';
HttpException.configure(path.join(__dirname, './i18n');

Errors Exposed

  • badRequest
  • serverError
  • unauthorizedError
  • notFoundError
import { unauthorizedError, notFoundError, badRequest, serverError } from 'exception-handler';

badRequest(); // sends out english responses
badRequest('fr'); // sends out french reposes

Setup I18N

To add new language, just create a json file in the folder specified during configuration.

-| i18n
---| en.json
---| fr.json

Put the following contents in the file and save.

{
  "bad_request": "Mauvaise Demande",
  "server_error": "Erreur Interne du Serveur",
  "unauthorized": "Non autorisé",
  "forbidden": "Interdit"
}

You can add multiple languages in a similar way, just have to change the value of the keys in the json file and put it in another json file again in the folder specified during configuration.

Complete Example

import express, { Request, Response, NextFunction } from 'express';
import { HttpException, handleExceptions, unauthorizedError, notFoundError } from 'exception-handler';
import path from 'path';

const app = express();

HttpException.configure(path.join(__dirname, './i18n')); //configure the language files

app.get('/', async (_req: Request, _res: Response, next: NextFunction) => {
  next(unauthorizedError('es')); // pass error in controller
});

app.use(handleExceptions); // use the handle exceptions middleware