This package provides a specific, pre-compiled Node.js runtime binary for Windows 64-bit systems. It allows developers to bundle a particular Node.js version as a project dependency, ensuring consistent execution environments without requiring a system-wide Node.js installation or relying on version managers. The package tracks various Node.js releases, with the version number (e.g., 24.15.0) directly corresponding to the Node.js version it contains. New major versions typically align with the official Node.js release schedule (April and October). This package is particularly useful for projects requiring strict control over their Node.js runtime, for CI/CD pipelines, or in environments where global Node.js installations are undesirable or restricted. It aims to provide a reliable, isolated Node.js environment within a project's `node_modules` directory.
npm install node-win-x64Verified import paths — ran on the pinned version, not inferred.
Demonstrates how to install `node-win-x64` and use the bundled Node.js executable for project scripts via `package.json`.
Be explicit about which Node.js executable you are running. Use `npm run` for project-specific Node.js, or `npx node-win-x64` for direct execution of the bundled binary. Consider using `nvm-windows` for managing global Node.js versions if you need to frequently switch between them for system-wide commands.
Always pin the exact version of `node-win-x64` in `package.json` to ensure deterministic builds. Regularly review Node.js release notes for breaking changes when updating the package version. Use `npm install node-win-x64@<version>` to specify.
Use `node-gyp rebuild` with the correct Node.js version in PATH if you are building native modules. Often, if `node-win-x64` is used in `npm` scripts, `node-gyp` will automatically pick up the local Node.js version. Ensure necessary build tools (like Visual Studio on Windows) are available if you are compiling native modules.
If running inside an npm script, ensure `node-win-x64` is listed in `devDependencies` or `dependencies` in `package.json` and `npm install` has been run. If running directly in the terminal, use `npx node-win-x64 --version` or ensure your system's PATH includes the directory where the Node.js executable is located if you intend to use a global installation.
Exit the Node.js REPL (by pressing Ctrl+C twice or typing `.exit`) and run `npm` commands directly in your command prompt or PowerShell terminal. `npm` is a separate command-line tool, not an internal Node.js command.
No dependency data recorded yet.