NO

Node.js Dev Tooling

Built-in Node.js development tools and workflows

Details

Language / Topic
nodejsNode.js
Category
Tooling

Rules

balanced
- Use `--watch` instead of `nodemon` for development file watching.
- Use `corepack` to manage package manager versions (`corepack enable`).
- Use `package.json` `engines` field to specify Node.js version — use `.nvmrc` or `.node-version` for version manager compatibility.
- Use `.nvmrc` or `engines` field in `package.json` to pin Node.js version.
- Use `node --inspect` for debugging instead of console.log-driven development.