Skip to content

Installing Requirements

nguyenvukhang edited this page Jan 17, 2022 · 11 revisions

git

Mac

Open Terminal, type in git and press enter.

If you see a really long help message within the Terminal, you're good to go.

Else, you might see this popup:

git install prompt

In that case, simply click "Install".

node, npm, and yarn

Specifically node v16 and yarn v1.

Mac

Install brew package manager, following instructions on brew.sh.

Use brew to install n (n is a node version manager)

brew install n

Then use n to install node version 16:

sudo n 16

This installs npm too. Use npm to install yarn:

sudo npm i -g yarn

Clone this wiki locally