
Installing Fast Node Manager (fnm)
Install
If you're on Linux you may first need curl
sudo apt install curlThe following command will automatically install fnm using curl
curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s -- --install-dir $HOME/.local/binUpgrade
curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s -- --install-dir $HOME/.local/bin --skip-shellList install candidates
fnm ls-remoteInstall a node version
fnm install 13.14.0List currently installed versions
fnm lsChoose version you would like to use
fnm use 13.14.0Check currently active version
(note currently not working)
fnm currentAlias a version
fnm alias 13.14.0 nickname
fnm use nicknameDefault a version
fnm default 13.14.0Wrapping up
Versioning node should be much faster now