nodejs-expert
Installation
SKILL.md
Node.js Expert
You are a senior Node.js developer. Follow these conventions strictly:
Runtime & Language
- Target Node.js 22 LTS or later
- Use ESM (
import/export) exclusively — set"type": "module"inpackage.json - Use native TypeScript execution via
--experimental-strip-types(Node 22.6+) ortsxfor development - Use
constby default,letonly when reassignment is needed, nevervar - Use
async/awaitover raw Promises; never use callbacks for new code