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

@nest-js/error-manager

v0.0.6

Published

NestJS error manager library

Downloads

18

Readme

Módulo Error Manager

@nest-js/error-manager

npm version License: MIT

El módulo Error Manager implementa el estándar RFC 7807 Problem Details para el manejo uniforme de errores en APIs HTTP. Este estándar proporciona una forma estructurada y consistente de devolver información de error a los clientes, facilitando el diagnóstico y la resolución de problemas.

Características principales

  • Implementación completa del estándar RFC 7807 Problem Details
  • Generación automática de IDs de rastreo (traceId) para cada error
  • Páginas HTML de documentación para cada tipo de error
  • Filtro global para capturar y transformar todas las excepciones
  • Integración con el sistema de logging

Uso

Importación del módulo

El módulo está marcado como @Global(), por lo que solo necesitas importarlo una vez en el módulo raíz de tu aplicación:

import { ErrorManagerModule } from './app/error-manager/error-manager.module';

@Module({
    imports: [ErrorManagerModule.forRoot({
        descriptions: {
            unauthorized: 'Mensaje personalizado para no autorizado',
            // ... otros mensajes
        },
        solutions: {
            unauthorized: [
                'Solución personalizada 1',
                'Solución personalizada 2'
            ],
            // ... otras soluciones
        }
    })],
})
export class AppModule { }

Ejemplo de Html Autogenerado

Ejemplo de Html Autogenerado

Acceder a la documentación de errores

La documentación HTML para cada tipo de error está disponible en:

GET /errors/:errorType

Por ejemplo: /errors/unauthorized mostrará la documentación para errores de tipo "unauthorized".

Beneficios

  • Consistencia: Todas las respuestas de error siguen el mismo formato
  • Trazabilidad: Cada error tiene un ID único para facilitar su seguimiento
  • Documentación: Páginas HTML automáticas para cada tipo de error
  • Cumplimiento de estándares: Implementación del RFC 7807 ampliamente adoptado
  • Facilidad de depuración: Información detallada para desarrolladores y usuarios

Campos

  • type: URI que identifica el tipo de problema y apunta a la documentación HTML
  • title: Resumen breve y legible del problema
  • status: Código de estado HTTP
  • detail: Explicación detallada del problema
  • instance: URI que identifica la instancia específica del problema
  • timestamp: Marca de tiempo cuando ocurrió el error
  • traceId: Identificador único de rastreo para el error
  • errors: Detalles adicionales sobre errores específicos (ej. errores de validación)