P
💻DeveloppementIntermediateClaude

Implement Robust Error Handling in Node.js

Create a professional Node.js error handling architecture with custom error classes, centralized middleware, and monitoring.

Paste in your AI

Paste this prompt in ChatGPT, Claude or Gemini and customize the variables in brackets.

Tu es un expert Node.js spécialisé dans la création d'applications robustes et résilientes. Je dois implémenter une gestion des erreurs professionnelle dans mon application.

Contexte de l'application :

  • Framework : [EX: Express 4, Fastify, Koa, NestJS]
  • Type d'application : [EX: API REST, application web fullstack, microservice]
  • Sources d'erreurs : [EX: base de données PostgreSQL, APIs tierces Stripe/Sendgrid, système de fichiers]
  • Logging actuel : [EX: console.log, Winston, Pino]
  • Monitoring : [EX: Sentry, Datadog, aucun]

Problèmes actuels :
[DÉCRIRE_LES_PROBLÈMES: ex. erreurs non capturées qui crashent l'app, pas de distinction erreur métier/technique, logs insuffisants]

Implémente une stratégie de gestion des erreurs complète :

  1. Hiérarchie de classes d'erreurs : crée une classe AppError de base et des classes spécialisées (ValidationError, NotFoundError, UnauthorizedError, DatabaseError, ExternalServiceError) avec codes d'erreur standardisés.
  2. Middleware de gestion des erreurs : middleware Express centralisé qui normalise toutes les erreurs, formate les réponses JSON et gère différemment les erreurs opérationnelles et les bugs.
  3. Capture des erreurs non gérées : gestion des process.on('uncaughtException') et process.on('unhandledRejection') avec graceful shutdown.
  4. Logging structuré : format JSON avec correlation ID, stack trace en développement uniquement, séparation des niveaux de log.
  5. Intégration monitoring : configuration Sentry ou équivalent avec contexte utilisateur et release tracking.
  6. Tests : tests unitaires pour la hiérarchie d'erreurs et le middleware.
100% found this useful

Personalize this prompt with Léa

Léa rewrites this prompt for your job and your exact goal — 3 quick questions.

Why this prompt works

<p>This prompt intelligently distinguishes operational errors (predictable, manageable: user not found, validation failed) from programming errors (unexpected bugs: undefined is not a function). This distinction is fundamental for deciding the recovery strategy: retry for the former, alert and restart for the latter.</p><p>Creating an error class hierarchy with standardized codes is a professional development practice that allows API clients to handle errors programmatically rather than parsing text messages. This is the foundation of a robust API.</p><p>Including uncaughtException and unhandledRejection handling with graceful shutdown is often missed by junior Node.js developers, but it is critical in production to avoid corrupted states and ensure in-flight requests complete properly.</p>

Use Cases

Improving Node.js API robustnessSetting up error monitoringStandardizing error handling across a team

Expected Output

Error class hierarchy, Express middleware, uncaught error handling, logging configuration, and monitoring integration.

Improve this prompt

Run this prompt through the Optimizer to strengthen its context, constraints and expected format.

Improve this prompt with the Optimizer

Comments

  • LéaAI

    Ajoutez un champ `statusCode` à vos classes d'erreurs pour les mapper directement au middleware HTTP. Pour éviter les `unhandledRejection`, utilisez un pattern `Result` (soit `Ok`, soit `Err`) dans les appels aux services externes : cela rend les erreurs explicites et permet un retour structuré vers le middleware centralisé.

📬 Get new prompts every week

Join our newsletter and never miss a prompt.

Go further

Similar Prompts

💻DeveloppementAdvancedAll AIs

Implement CSP with nonces

Prevent XSS with strict CSP

0238
💻DeveloppementAdvancedClaude

Debug a Production Error

Quickly analyze a production error with a structured Root Cause Analysis approach and an immediate action plan.

47520
💻DeveloppementIntermediateAll AIs

Implement JWT authentication

Add JWT auth to an API

0248
💻DeveloppementIntermediateAll AIs

GitHub Copilot Prompt for Generating JavaScript Code

GitHub Copilot, the AI-powered programming assistant developed by GitHub and OpenAI, has transformed the way developers write JavaScript code. By leveraging billions of lines of open-source code, Copilot can generate complete functions, classes, modules, and even entire architectures from simple natural language descriptions. To get the most out of this tool, mastering the art of prompt engineering for code generation is essential. A well-structured prompt produces clean, performant JavaScript code that adheres to modern best practices (ES2024+, implicit typing, error handling, modularity). In this guide, we offer optimized prompts for GitHub Copilot that will help you generate professional-grade JavaScript code, whether you're developing a REST API, a frontend component, a utility script, or complex business logic. Each prompt is designed to provide sufficient context to Copilot while allowing the flexibility needed for relevant and project-adapted generation.

0225