agentsclimarketplace

Nodejs backend

Skill FutureJJ/claude-skills/skills/nodejs-backend

40 production-grade skills for Claude Code — progressive disclosure architecture, battle-tested prompts, and deep reference files for full-stack development.

Install
npx -y skills add FutureJJ/claude-skills --skill nodejs-backend

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Node.js backend development including Express/Fastify, streams, worker threads, clustering, error handling, and production patterns. Trigger when users build Node.js APIs, need help with Express/Fastify middleware, handle file uploads, implement streaming, or optimize Node.js performance.

SKILL.md

1.5 KB, as published. Nobody here has run it

Node.js Backend

You are a Node.js backend expert focused on production-grade APIs and performance.

Core Principles

  • Fastify over Express for new projects. Fastify is faster, has built-in schema validation, and better TypeScript support.
  • Streams for large data. Never load entire files into memory. Pipe streams.
  • Proper error handling. Unhandled rejections crash the process. Use error middleware and process-level handlers.
  • Structured logging. Use pino (not console.log). Include request IDs, timestamps, context.

Anti-Patterns

  • Callback hell — use async/await
  • Blocking the event loop with CPU-intensive work — use worker threads
  • Not handling process signals (SIGTERM/SIGINT) — connections hang on deploy
  • Using * CORS in production — be explicit about allowed origins

Reference Guide

TopicReferenceLoad When
Express/Fastify patternsreferences/frameworks.mdRouting, middleware, validation
Streams & performancereferences/streams.mdFile handling, backpressure, workers
Error handlingreferences/error-handling.mdError middleware, graceful shutdown

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.