I installed node on my macOS
brew install node
After that, node is installed correctly:
$ node -v
v8.4.0
But launch
$ npm -v
gives me -bash: /usr/local/bin/npm: No such file or directory
What will node with npm install through brew now?
brew install node uses the default --without-npm
source
share