I had previously installed node through the tools found on their website and it was giving me a warning regarding Unbrewed header files
and listing a bunch of references to files within /node/
directories when running brew doctor
.
Previous to the uninstall, I was getting the following versions of node and npm:
$ node -v
v11.13.0
~
$ npm -v
6.11.3
I attempted to uninstall the existing node install by following the instructions found here: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
I then tried to reinstall node by running brew install node
and everything went through successfully, however, when checking my node and npm versions, I am still getting a readout of the old versions referenced above. Attempting to run a brew upgrade
$ brew upgrade node
Warning: node 13.3.0 already installed
~
$ node -v
v11.13.0
~
$ npm -v
6.11.3
Could I have missed some files when uninstalling the previous version of node? Is there somewhere I am not looking?