Node.js scripting with ES modules and CommonJS, stdlib-first, npm conventions, and async/await patterns. Use when writing Node.js scripts, .js or .mjs files, working with npm, or building CLI tools.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Node.js scripting with ES modules and CommonJS, stdlib-first, npm conventions, and async/await patterns. Use when writing Node.js scripts, .js or .mjs files, working with npm, or building CLI tools.
Node.js
Module System
Prefer ES modules (.mjs) for new scripts: import/export syntax, top-level await
Use CommonJS (.js) when compatibility with older Node.js or existing codebases is needed
Always specify "type": "module" in package.json for ES module directories
Use .mjs extension to explicitly opt into ES modules regardless of package.json
Stdlib First
Node.js has a RICH standard library - use it before reaching for npm packages