cd $HOME/.nodebrew/current/bin
$ ./node -v
v11.0.0
$ node -v
v10.5.0
npmのパスを調べる
npm bin -g
/usr/local/bin
cd /usr/local/bin
ここにいたので、ここのnodeを使わないように
pathを調べる
vi ~/.bash_profile
export PATH=$PATH:$HOME/.nodebrew/current/bin
nodebrewのパスを先に解決するように変更
export PATH=$HOME/.nodebrew/current/bin:$PATH
それでも変わらない場合
shellを確認する
chsh
↓ zshになっていれば
https://support.apple.com/ja-jp/HT208050
zsh用の設定を行う
vi .zprofile
export PATH=$HOME/.nodebrew/current/bin:$PATH