I can't find the location of node.js installations, downloaded and installed via e.g.:
nvm install 5.0
Do you know the answer?
I can't find the location of node.js installations, downloaded and installed via e.g.:
nvm install 5.0
Do you know the answer?
nvm which 5.0
Will give you the path where that version of Node.js is installed
My version of nvm (1.1.7) does not have nvm which
. The command nvm root
does show the "directory where nvm should store different versions of node.js".
Another command that can be used to find where nvm installs various versions of Node.js:
which node
Note: It works only if your system is using a version of Node.js installed via nvm and not via some other route.