Before installing Homebrew, I had existing installations on my MacBook. For instance, I installed Google Chrome and Node.js as people normally do - by visiting their websites and downloading the .dmg/.pkg files.
Whereas, with Homebrew I would have ran
brew cask install google-chrome
brew install node
To integrate these applications with Homebrew, would I need to uninstall them and reinstall through Homebrew? Can Homebrew detect these existing installations? Is there an advantage to using a package manager?
(My thoughts are migrating them would allow me use brew update
to maintain them.)