-
Notifications
You must be signed in to change notification settings - Fork 1
Setting up development environment on Macs
Wai-Yin Kwan edited this page Jul 9, 2017
·
3 revisions
Install Homebrew
- Package manager for Macs
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Install Git
- Version control system
$ brew install git
Instead of using a command line for Git, you can use a desktop app.
Optional: Install Postgres
- relational database
$ brew install postgres
Install Node
$ brew install node
Install Yarn
- Package manager for Node. Easier to use alternative to npm.
$ npm install -g yarn