Managing multiple versions of Node.js can be cumbersome, especially when working on different projects that require different versions. On Unix-based systems, nvm
(Node Version Manager) allows users to switch between different versions of Node.js seamlessly. However, on Windows, nvm
behaves differently and does not automatically switch versions based on the .nvmrc
file. This script automates the process of switching Node.js versions on Windows using nvm-windows
.
# Load nvm and automatically use the Node version specified in .nvmrc
load-nvmrc() {
if [ -f .nvmrc ]; then
local nvm_version=$(cat .nvmrc)
local current_version=$(node.exe -v)
if [ "$current_version" != "$nvm_version" ]; then
nvm use "$nvm_version"
fi
fi
}
# Custom keybinding for Ctrl+N
bind -x '"\C-n": load-nvmrc'
# Automatically switch node versions when changing directories or at initiation
cd() {
builtin cd "$@" && load-nvmrc
}
load-nvmrc
The script provided below is intended to be placed in your .bashrc
or equivalent profile file. It checks the .nvmrc
file in the current directory and switches to the specified Node.js version if it differs from the currently active version. Additionally, it binds a custom keybinding for Ctrl+N
to manually trigger the version switch and automatically switches versions when changing directories or initializing a terminal session.
- On Windows,
nvm
does not automatically switch Node.js versions based on the.nvmrc
file. - Developers often work on multiple projects requiring different versions of Node.js.
- Manually switching Node.js versions can be error-prone and time-consuming.
- This script automates the process of switching Node.js versions on Windows.
- It ensures that the correct Node.js version is used based on the
.nvmrc
file in the current directory. - It provides a custom keybinding (
Ctrl+N
) to manually trigger the version switch. - It automatically switches versions when changing directories or initializing a terminal session.
I am considering publishing a VSCode extension to further streamline the process of managing Node.js versions on Windows. The extension will provide additional features and integrations to enhance the developer experience.
Thank you!
It's been very useful. I have had a few issues changing from one project, with a specific Node version, to another with a different Node version.
Only I am using PowerShell as my main OS CLI. I used your script as base to create my own PowerShell script to do the same.
Here, I share it with you: