What problem does it solve?
Streamlines the initial setup of a Node.js project by applying modern defaults (pnpm, TypeScript, ES Module by default) and a repeatable, parallelized script-check workflow.
Core Features & Use Cases
- Pin the latest pnpm as the package manager and lock it in package.json to ensure consistent installs across environments.
- Enforce explicit Node.js and pnpm version ranges via the engines field for predictable runtimes.
- Enable ES Modules by default with "type": "module" and configure TypeScript for NodeNext, strict modes, and accurate declarations.
- Add TypeScript as a devDependency along with @types/node to improve DX for server-side codebases.
- Introduce lint/format tooling (oxide-based) and a parallel check/fix script pattern to speed up CI and local feedback.
- Applies to both new project initialization and migration scenarios, ensuring a consistent baseline.
Quick Start
Initialize a modern Node.js project with pnpm, TypeScript, and parallel checks by applying this skill to your repository.