Maintenance in progress: we are indexing a large batch of new skills. Some pages may load slowly or briefly show no results. Nothing is lost, and everything is back to normal within the hour.

Nodejs

Node.js backend patterns and best practices. Server setup, async I/O, process management, environment configuration. Trigger: When building backend services, CLI tools, or server-side scripts with Node.js.

majiayu000 6bd9e6d 2 files · 1.2 KB Updated 567 repo stars

File contents

Node.js Skill

When to Use

  • Building backend services or APIs
  • Writing CLI tools or scripts
  • Managing async I/O and processes

Critical Patterns

  • Use async/await for I/O
  • Environment variable management
  • Graceful shutdown and error handling

Decision Tree

  • HTTP server? → Use built-in http or framework
  • CLI tool? → Use process.argv and commander/yargs
  • Long-running process? → Use process signals

Edge Cases

  • Unhandled promise rejections
  • Memory leaks in long-running apps
  • Child process management

majiayu000/claude-skill-registry-data/tree/main/development/nodejs-joabgonzalez-ai-agents-framework commit 6bd9e6d626

Frequently asked questions

npx skillmds add majiayu000/nodejs-2