• Stars
    star
    33,877
  • Rank 444 (Top 0.01 %)
  • Language
    Go
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A node.js version management utility for Windows. Ironically written in Go.

NVM for Windows

The Microsoft/npm/Google recommended Node.js version manager for Windows.
This is not the same thing as nvm! (expand for details)

The original nvm is a completely separate project for Mac/Linux only. This project uses an entirely different philosophy and is not just a clone of nvm. Details are listed in Why another version manager? and what's the big difference?.

Download Now GitHub tag (latest SemVer) GitHub Release Date GitHub all releases Discuss Twitter URL

Sponsors
Β 

Running into issues? See the common issues wiki.

Seeking Feedback:

We're working on Runtime (rt), the successor to NVM For Windows. Please contribute by taking a minute to complete this form. Thank you!

Overview

Manage multiple installations of node.js on a Windows computer.

tl;dr Similar (not identical) to nvm, but for Windows. Has an installer. Download Now!

This has always been a node version manager, not an io.js manager, so there is no back-support for io.js. Node 4+ is supported. Remember when running nvm install or nvm use, Windows usually requires administrative rights (to create symlinks).

NVM for Windows

There are situations where the ability to switch between different versions of Node.js can be very useful. For example, if you want to test a module you're developing with the latest bleeding edge version without uninstalling the stable version of node, this utility can help.

Switch between stable and unstable versions.

Installation & Upgrades

⭐ ⭐ Uninstall any pre-existing Node installations!! ⭐ ⭐

Uninstall any existing versions of Node.js before installing NVM for Windows (otherwise you'll have conflicting versions). Delete any existing Node.js installation directories (e.g., %ProgramFiles%\nodejs) that might remain. NVM's generated symlink will not overwrite an existing (even empty) installation directory.

πŸ‘€ Backup any global npmrc config πŸ‘€ (e.g. %AppData%\npm\etc\npmrc)

Alternatively, copy the settings to the user config %UserProfile%\.npmrc. Delete the existing npm install location (e.g. %AppData%\npm) to prevent global module conflicts.

Install nvm-windows

Use the latest installer (comes with an uninstaller). Alternatively, follow the manual installation guide.

If NVM4W doesn't appear to work immediately after installation, restart the terminal/powershell (not the whole computer).

NVM for Windows Installer

Reinstall any global utilities

After install, reinstalling global utilities (e.g. yarn) will have to be done for each installed version of node:

nvm use 14.0.0
npm install -g yarn
nvm use 12.0.1
npm install -g yarn

Upgrading nvm-windows

πŸ’‘ As of v1.1.8, there is an upgrade utility that will automate the upgrade process.

To upgrade nvm-windows, run the new installer. It will safely overwrite the files it needs to update without touching your node.js installations. Make sure you use the same installation and symlink folder. If you originally installed to the default locations, you just need to click "next" on each window until it finishes.

Usage

nvm-windows runs in an Admin shell. You'll need to start powershell or Command Prompt as Administrator to use nvm-windows

NVM for Windows is a command line tool. Simply type nvm in the console for help. The basic commands are:

  • nvm arch [32|64]: Show if node is running in 32 or 64 bit mode. Specify 32 or 64 to override the default architecture.
  • nvm check: Check the NVM4W process for known problems.
  • nvm current: Display active version.
  • nvm install <version> [arch]: The version can be a specific version, "latest" for the latest current version, or "lts" for the most recent LTS version. Optionally specify whether to install the 32 or 64 bit version (defaults to system arch). Set [arch] to "all" to install 32 AND 64 bit versions. Add --insecure to the end of this command to bypass SSL validation of the remote download server.
  • nvm list [available]: List the node.js installations. Type available at the end to show a list of versions available for download.
  • nvm on: Enable node.js version management.
  • nvm off: Disable node.js version management (does not uninstall anything).
  • nvm proxy [url]: Set a proxy to use for downloads. Leave [url] blank to see the current proxy. Set [url] to "none" to remove the proxy.
  • nvm uninstall <version>: Uninstall a specific version.
  • nvm use <version> [arch]: Switch to use the specified version. Optionally use latest, lts, or newest. newest is the latest installed version. Optionally specify 32/64bit architecture. nvm use <arch> will continue using the selected version, but switch to 32/64 bit mode. For information about using use in a specific directory (or using .nvmrc), please refer to issue #16.
  • nvm root <path>: Set the directory where nvm should store different versions of node.js. If <path> is not set, the current root will be displayed.
  • nvm version: Displays the current running version of NVM for Windows.
  • nvm node_mirror <node_mirror_url>: Set the node mirror.People in China can use https://npmmirror.com/mirrors/node/
  • nvm npm_mirror <npm_mirror_url>: Set the npm mirror.People in China can use https://npmmirror.com/mirrors/npm/

⚠️ Gotcha!

Please note that any global npm modules you may have installed are not shared between the various versions of node.js you have installed. Additionally, some npm modules may not be supported in the version of node you're using, so be aware of your environment as you work.

πŸ“› Antivirus

Users have reported some problems using antivirus, specifically McAfee. It appears the antivirus software is manipulating access to the VBScript engine. See issue #133 for details and resolution.

v1.1.8 is not code signed, but all other versions are signed by Ecor Ventures LLC/Author.io. This should help prevent false positives with most antivirus software.

v1.1.8+ was not code signed due to an expired certificate (see the release notes for reasons). v1.1.9 is code signed thanks to ajyong, who sponsored the new certificate.

Using Yarn

tldr; npm i -g yarn

See the wiki for details.

Build from source

  • Install go from http://golang.org
  • Download source / Git Clone the repo
  • Change GOARCH to amd64 in build.bat if you feel like building a 64-bit executable
  • Fire up a Windows command prompt and change directory to project dir
  • Execute go get github.com/blang/semver
  • Execute go get github.com/olekukonko/tablewriter
  • Execute build.bat
  • Check the distdirectory for generated setup program.

πŸ’‘ Why another version manager?

There are several version managers for node.js. Tools like nvm and n only run on Mac OSX and Linux. Windows users are left in the cold? No. nvmw and nodist are both designed for Windows. So, why another version manager for Windows?

The architecture of most node version managers for Windows rely on .bat files, which do some clever tricks to set or mimic environment variables. Some of them use node itself (once it's downloaded), which is admirable, but prone to problems. Right around node 0.10.30, the installation structure changed a little, causing some of these to just stop working with anything new.

Additionally, some users struggle to install these modules since it requires a little more knowledge of node's installation structure. I believe if it were easier for people to switch between versions, people might take the time to test their code on back and future versions... which is just good practice.

πŸ’‘ What's the big difference?

First and foremost, this version of nvm has no dependency on node. It's written in Go, which is a much more structured approach than hacking around a limited .bat file. It does not rely on having an existing node installation. Go offers the ability to create a Mac/Linux version on the same code base. In fact, this is already underway.

The control mechanism is also quite different. There are two general ways to support multiple node installations with hot switching capabilities. The first is to modify the system PATH any time you switch versions, or bypass it by using a .bat file to mimic the node executable and redirect accordingly. This always seemed a little hackish to me, and there are some quirks as a result of this implementation.

The second option is to use a symlink. This concept requires putting the symlink in the system PATH, then updating its target to the node installation directory you want to use. This is a straightforward approach, and seems to be what people recommend.... until they realize just how much of a pain symlinks are on Windows. This is why it hasn't happened before.

In order to create/modify a symlink, you must be running as an admin, and you must get around Windows UAC (that annoying prompt). Luckily, this is a challenge I already solved with some helper scripts in node-windows. As a result, NVM for Windows maintains a single symlink that is put in the system PATH during installation only. Switching to different versions of node is a matter of switching the symlink target. As a result, this utility does not require you to run nvm use x.x.x every time you open a console window. When you do run nvm use x.x.x, the active version of node is automatically updated across all open console windows. It also persists between system reboots, so you only need to use nvm when you want to make a change.

NVM for Windows comes with an installer, courtesy of a byproduct of my work on Fenix Web Server.

Overall, this project brings together some ideas, a few battle-hardened pieces of other modules, and support for newer versions of node.

NVM for Windows recognizes the "latest" versions using a list provided by the Node project. Version 1.1.1+ use this list. Before this list existed, I was scraping releases and serving it as a standalone data feed. This list was used in versions 1.1.0 and prior, but is now deprecated.

Motivation

I needed it, plain and simple. Additionally, it's apparent that support for multiple versions is not coming to node core. It was also an excuse to play with Go.

Why Go? Why not Node?

I chose Go because it is cross-platform, felt like less overhead than Java, has been around longer than most people think. Plus, I wanted to experiment with it. I've been asked why I didn't write it with Node. Trying to write a tool with the tool you're trying to install doesn't make sense to me. As a result, my project requirements for this were simple... something that's not Node. Node will continue to evolve and change. If you need a reminder of that, remember io.js, Ayo, all the breaking changes between 4.x.x and 6.x.x, and the shift to ES Modules in 12+. Change is inevitable in the world of software. JavaScript is extremely dynamic.

πŸ™ Thanks

Thanks to everyone who has submitted issues on and off Github, made suggestions, and generally helped make this a better project. Special thanks to

  • @vkbansal, who provided significant early feedback throughout the early releases.
  • @rainabba and @sullivanpt for getting Node v4 support integrated.
  • @s-h-a-d-o-w who resolved the longstanding space escaping issue in path names (#355).
  • ajyong who sponsored the code signing certificate in late 2021.

Contributors

More Repositories

1

node-windows

Windows support for Node.JS scripts (daemons, eventlog, UAC, etc).
JavaScript
2,744
star
2

fenix

A simple and visual static web server with collaboration features.
JavaScript
1,639
star
3

node-mac

Node utilities for Mac
JavaScript
530
star
4

node-linux

Create native background daemons on Linux systems.
JavaScript
419
star
5

iam

Identification and access management library for all JS runtimes that support ES Modules.
JavaScript
75
star
6

porthog

Identify which process is using a specific port.
JavaScript
28
star
7

fenix-cli

A command line interface for Fenix web servers.
JavaScript
26
star
8

nodedistro

A node.js distribution metadata service, designed to support node version managers.
22
star
9

shortbus

A lightweight flow control module that works like a mini event bus + serial/parallel processor.
JavaScript
20
star
10

localenvironment

Simply and optionally apply environment variables if they exist in env.json.
JavaScript
19
star
11

cfamazon

ColdFusion Amazon Integration
ColdFusion
17
star
12

JSAppStack

Code for the "Future of JS App Architecture" Sencha Meetup on 9/6/2011.
JavaScript
14
star
13

common-api

A collection of utility methods for producing API's.
JavaScript
11
star
14

cfw

Cloudflare worker local development environment and publishing tool.
JavaScript
11
star
15

musthave

A Node.js helper module for checking object elements against a list of required elements.
JavaScript
10
star
16

go-fsutil

A light abstraction for common file system functions.
Go
10
star
17

go-timer

A timer library, designed for porting JavaScript's setTimeout and setInterval functions to Go.
Go
8
star
18

tappedout

A simple "back to basics" JavaScript test runner for producing TAP-formatted results. Built using ES Modules.
JavaScript
8
star
19

productionline

An extendable class for creating builds (transpilation, minification, concatenation, etc).
JavaScript
6
star
20

clifirst

The demo app for my OpenJS World 2020 Conference talk: "The Benefits of a 'CLI First' Development Strategy"
6
star
21

daemon-manager

A utility module designed to standardize the daemon management API across node-windows, node-mac, and node-linux.
JavaScript
6
star
22

sslgen

Quickly generate self-signed SSL certificates for testing.
JavaScript
5
star
23

goose

Simple MongoDB Organizational Pattern
JavaScript
5
star
24

productionline-web

An extension of productionline, providing common web/UI build capabilities.
JavaScript
5
star
25

tracktime

A cross-runtime "stopwatch" for JavaScript environments. Use it to track execution times.
JavaScript
5
star
26

go-where

Determines where a global executable exists on a computer.
Go
5
star
27

workspace

A container-based workflow management utility.
JavaScript
4
star
28

assettracker

AssetTracker is a web-based tool for documenting assets in your IT infrastructure.
ColdFusion
4
star
29

servers

Server scripts
Shell
4
star
30

github-autotag

Monitor package.json for version changes and auto-tag new releases.
JavaScript
3
star
31

go-localenvironment

Apply environment variables if they exist in env.json.
Go
3
star
32

postit

A visual survey building tool built on ColdFusion and Ext JS
JavaScript
3
star
33

dev-cdn

A repository of static assets.
2
star
34

staticassets

A repository for blog assets.
2
star
35

customlog

Really simple custom logging.
JavaScript
2
star
36

tapfmt

A standalone TAP formatter application for all operating systems and runtimes.
Go
2
star
37

bugconnect

BugConnect is a small package of CF components that connect to and interact with Bugzilla.
ColdFusion
2
star
38

site-cb

CB Site
CSS
1
star
39

gulp-depalert

A gulp plugin to identify outdated dependencies.
JavaScript
1
star
40

bg

Run and deploy Node.js scripts as background services.
JavaScript
1
star
41

etl-shell

A base app for building ETL processes with JavaScript
1
star
42

promo

Assets for promoting projects, sponsorship, etc.
1
star
43

aoi

JavaScript
1
star
44

polymer-doc-generator

Generate JSON representations of custom Polymer-based web components. Also provides an example static HTML doc builder utility.
JavaScript
1
star
45

quickimage

An image conversion library.
JavaScript
1
star
46

cms

Static CMS UI
1
star