nodejs-best-practices
Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | nodejs-best-practices |
| description | Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying. |
| allowed-tools | Read, Write, Edit, Glob, Grep |
Principles > Patterns. Think before copying.
--experimental-strip-types in Node 22+.Scale exposes bad decisions.
fs.readFileSync?".Object.prototype or use Map for user input storage.npm audit in CI.async/await.Promise.all (Parallel) vs for..of (Sequential).❌ Blocking Event Loop (Sync I/O). ❌ Hardcoded Secrets. ❌ "Trusting" internal data. ❌ Logic in Controllers. ❌ N+1 Queries.
Structured iterative reasoning framework for deep problem solving, featuring verification loops and refinement stages.
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Main application building orchestrator. Creates full-stack applications from natural language requests.
Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation.
Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting.
AI operational modes (BRAINSTORM, IMPLEMENT, DEBUG, REVIEW, TEACH, SHIP).