

Upon executing a package.json "script", npm (and yarn) will use that version to run the script instead of the globally installed Node.js. You can add node as a dependency in package.json and control which version is used for a particular project. With package.json - The Maintainable and Portable Way ๐๐๐๐๐๐๐๐๐๐๐ Lets each project specify its own version Download and run the installer, then: nvm install v0.10.33 # Install v0.10.33 Use nvm-windows, it's like nvm but for Windows. N ls # Output the versions of node available

N -stable # Output the latest stable node version available N -latest # Output the latest node version available N stable # Install or activate the latest stable node release N latest # Install or activate the latest node release Say you want Node.js v0.10.x to build Atom. Use n, an extremely simple Node version manager that can be installed via npm.
