x version manager for windows

xvm-windows is the Windows version of xvm, and its usage is basically consistent with xvm. Installation git clone https://github.com/duan0120/xvm-windows.git %USERPROFILE%/.xvm Configure environment variables XVM_ROOT=%USERPROFILE%/.xvm Add the following paths to %PATH% %XVM_ROOT%\versions\node\default %XVM_ROOT%\versions\go\default\bin %XVM_ROOT%\versions\python\default %XVM_ROOT%\versions\python\default\Scripts Usage Check version xvm -v Get help xvm -h xvm help node Node.js List available versions xvm node ls-remote xvm node ls-remote --lts xvm node list Install specific version xvm node install v18.19.1 Uninstall specific version xvm node uninstall v18.19.1 Switch version xvm node use v18.19.1 Go List available versions xvm go ls-remote xvm go list Install specific version xvm go install go1.19.2 # arch: amd64/arm64/386, default arch: amd64 xvm go install go1.13.10 --arch=amd64 Uninstall specific version xvm go uninstall go1.19.2 Switch version xvm go use go1.19.2 Python List available versions xvm python ls-remote xvm python list Install specific version xvm python install 3.12.1 # arch:...

2025-03-28 · 1 min · duanhongjin

X Version Manager

As a full-stack engineer, we often install various tools on the same computer. However, due to different requirements, we may need to use different versions of these tools, making version management extremely important. We use nvm to manage Node.js; We use gvm to manage Go (Golang); We use pyenv or Conda to manage Python. These tools are all very powerful, but their usage differs significantly. After a period of not using them, we have to re-familiarize ourselves with how each one works. More importantly, this adds several extra pieces of software to our system for no apparent reason. After reinstalling my system one time, I finally reached my breaking point… In reality, my needs are simple, and I don’t require the advanced features of these version managers. I just need a...

2025-03-28 · 2 min · duanhongjin