What are Node.js and npm?
Here’s the short version:
- Node.js lets your computer run JavaScript outside the browser.
- npm (Node Package Manager) comes bundled with Node.js and takes care of installing everything the Console needs to run smoothly.
What You’ll Need
- A computer running Windows, macOS, or Linux
- Access to a terminal or command prompt
node and npm from your terminal.
Installation Steps
The setup depends on your operating system. Follow the steps that match your device:
Windows
Download Node.js
Visit nodejs.org and download the LTS (Long-Term Support) version.
macOS
Download Node.js
Head to nodejs.org and grab the LTS version for macOS.
Ubuntu or Debian
In your Terminal, run:Bash
Bash
Need a newer version? If your Node.js version is below v18, we recommend upgrading with nvm (Node Version Manager). It gives you flexibility and helps avoid version issues.Follow this guide on GitHub for a quick setup.

