Skip to content

Instantly share code, notes, and snippets.

@AJ-7885
Last active June 19, 2024 15:29
Show Gist options
  • Save AJ-7885/8cc81222e5de55016483a630227c88b7 to your computer and use it in GitHub Desktop.
Save AJ-7885/8cc81222e5de55016483a630227c88b7 to your computer and use it in GitHub Desktop.
Setup MAC for Java & JavaScript Developer
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update
brew install nvm
mkdir ~/.nvm
vim ~/.bash_profile
In your .bash_profile file (you may be using another file, according to your shell), add the following : export NVM_DIR=~/.nvm . source $(brew --prefix nvm)/nvm.sh
source ~/.bash_profile
echo $NVM_DIR
nvm install 11.0.0
npm install -g yarn
brew install mysql ( OPTIONAL )
brew install postgres ( OPTIONAL )
brew install mongodb ( OPTIONAL )
brew install maven
brew install sonar-scanner ( OPTIONAL )
brew install travis ( OPTIONAL )
brew install jq ( OPTIONAL )
brew tap caskroom/versions
brew cask install java8
brew install --cask freefilesync ( OPTIONAL )
brew install --cask vlc ( OPTIONAL )
brew install --cask tunnelblick
brew install --cask unrarx
brew install --cask ccleaner ( OPTIONAL )
brew install --cask cyberduck
brew install --cask firefox
brew install --cask google-chrome
brew install --cask atom ( OPTIONAL )
brew install --cask visual-studio-code
brew install --cask netbeans ( OPTIONAL )
brew install --cask webstorm ( OPTIONAL )
brew install --cask intellij-idea( OPTIONAL )
brew install --cask android-sdk ( OPTIONAL )
brew install --cask docker
brew install kubernetes-cli
brew install awscli
brew install python
brew install --cask pgadmin4 ( OPTIONAL )
brew install --cask sequel-pro
brew install --cask telegram ( OPTIONAL )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment