DEV Community

Mac OS 2025

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)"
Enter fullscreen mode Exit fullscreen mode

optional update your stuff

brew update
Enter fullscreen mode Exit fullscreen mode

2. Second install some GUI applications

brew install visual-studio-code
Enter fullscreen mode Exit fullscreen mode

3. Second install some terminal applications

brew install \
  wget \
  git \
  nvm \
Enter fullscreen mode Exit fullscreen mode

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"
Enter fullscreen mode Exit fullscreen mode

5. Config your nvm

Add nvm to your path

echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.zshrc
Enter fullscreen mode Exit fullscreen mode

Refresh your terminal

source ~/.zshrc
Enter fullscreen mode Exit fullscreen mode

6. Install Node

nvm install --lts
Enter fullscreen mode Exit fullscreen mode

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)