-
Notifications
You must be signed in to change notification settings - Fork 12
Getting Started
BhakareAbhishek edited this page Apr 30, 2024
·
15 revisions
Pre-Requirements
The following tools should be installed on your development machine:
-
An IDE (e.g. Visual Studio) that supports .NET 8.0+ development.
-
Yarn v1.20+ (not v2)^1 or npm v6+ (already installed with Node)
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.