Getting Started

Download and install Node.js from the official website: https://nodejs.org/

Alternatively, install Node.js using a package manager:

Windows

choco install nodejs

macOS

brew install node

Linux

sudo apt install nodejs npm

Run the following commands to check if Node.js and npm (Node Package Manager) are installed:

node -v
npm -v