Setting up the Dev Environment πŸ§ͺ

A little set-up in, the beginning can save you from some headaches later on! Install Node.js and Yarn for your appropriate operating system.

Mac instructions

  1. Download and install Homebrew with the instructions.
  2. Open your Terminal.
  3. Install Xcode Command line tools by running xcode-select --install. If that fails, download it directly from Apple’s site.
  4. Install Node. Run brew install node from the terminal.
  5. Download Yarn by running brew install yarn.

Windows Instructions

Download and install the latest Node.js version from the official Node.js website. Also, download and install the latest Yarn version from the website.

The steps to download and install Git depend on your operating system. Follow the guide for your system:

Install Git

The steps to download and install Git depend on your operating system. Follow the guide for your system:

Confirm Installation

To confirm that everything has being installed correctly by run the following:

yarn --version
node --version
git --version