What problem does it solve? Building production-grade Node.js services requires deep understanding of the runtime—event loop behavior, async patterns, error handling, and security. This Skill provides structured guidance on Node.js internals so you avoid common pitfalls like blocking the event loop, unhandled rejections, and memory leaks. ## Core Features & Use Cases - Runtime Mastery: Covers event loop phases, async/await hierarchy, Promise composition, and concurrency control patterns. - Production Hardening: Includes graceful shutdown, structured logging with pino, health/readiness endpoints, environment validation with Zod, and security headers with helmet. - Performance & Scaling: Guidance on streams with pipeline(), worker threads for CPU-bound tasks, cluster mode, and profiling tools like clinic.js and 0x. - Use Case: When debugging high latency in an Express API, use this Skill to identify event loop blocking, offload CPU work to worker threads, and add proper error handling and observability. ## Quick Start Ask the AI to review your Node.js service for event loop blocking, error handling gaps, and production readiness using the nodejs-development guidelines.