Setting Up Your Development Environment
1. Install Required Tools
a. Install Node.js
If Node.js is not already installed, download and install it from Node.js. You’ll need Node.js version 18 or higher.
b. Install Visual Studio Code (VS Code)
Download and install VS Code, a development environment where you can update your directory’s information (e.g., name, description, categories, etc.). Download VS Code here.
c. Install Git
Visit Git and download the installation file.
Follow the installation instructions for your operating system.
2. Open the Terminal in VS Code
You’ll use the terminal in VS Code to run commands. Here’s how to open it:
Method 1: Shortcut
Method 1: Shortcut
On Windows/Linux: Press `Ctrl + `` (Control + Backtick).
On macOS: Press `Cmd + `` (Command + Backtick). (Note: The backtick key is usually located above the Tab key.)
Method 2: Menu
Click the View menu at the top of VS Code.
Select Terminal from the dropdown.
3. Update npm
To ensure you have the latest version of npm, run the following command in the terminal:
Last updated