Skip to content

Getting Started

BhakareAbhishek edited this page Apr 30, 2024 · 15 revisions

Setup Your Development Environment

Pre-Requirements

The following tools should be installed on your development machine:

Verify your environment

Open a command line and run:

  • node -v: Should be 14.x.x or 16.x.x (where "x" is some number). Newer versions may not work.
  • npm -v: Should be >= 6. If not, run npm install -g npm.
  • yarn -v: Should be >= 1.15.0 but less than 2. If not, run npm install -g yarn@1.
  • git --version to ensure you have Git installed.

If using VS Code, go to a folder and run code . to open the folder in VS Code. If it doesn't work, open VS Code and press F1 or ctrl+shift+P (cmd+shift+P), type path, and select the Install 'code' command in PATH option.

Clone this wiki locally