Hi
If you are a pro just click here Mac Setup for Web Development [2025]
1. First Install homebrew
# paste in terminal and follow the instructions
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
optional update your stuff
brew update
2. Second install some GUI applications
brew install visual-studio-code
3. Second install some terminal applications
brew install \
wget \
git \
nvm \
4. Config your git
*Change "Your Name" and "you@your-domain.com" with your information
*
git config --global user.name "Your Name"
git config --global user.email "you@your-domain.com"
5. Config your nvm
Add nvm to your path
echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.zshrc
Refresh your terminal
source ~/.zshrc
6. Install Node
nvm install --lts
And you are ready to code :). If you need to go further you can read this:
How to Set up a Mac for Development
If you are trying to make Mobile apps with react native, you will need to install XCode with appstore... so... maybe you will need to update your system
Top comments (0)