Where is node while using nvm?

NVM should set PATH variable to your node installation directory, it does this automatically after:

nvm current use `nvm current`

You can check variables like this:

env | grep NVM

Here is my output:

NVM_DIR=/Users/name/.nvm
NVM_CD_FLAGS=-q
NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist
NVM_IOJS_ORG_MIRROR=https://iojs.org/dist
NVM_PATH=/Users/name/.nvm/versions/node/v5.9.0/lib/node
NVM_BIN=/Users/name/.nvm/versions/node/v5.9.0/bin

You can locate your node by running which node or command -v node


You can get the path to the executable to where node was installed with

nvm which node

Or any of the other NVM special aliases for node versions such as

nvm which default

Tags:

Node.Js

Nvm