How to Install Node.js and NPM
This article will briefly cover how to install Node.js and NPM for your computer. Note that NPM and Node.js are packaged together, so you only need to install Node.js to install both.
2. By default, your OS should be selected. As such, you only need to hit the download button for the latest LTS.
3. Once the file finishes downloading, double-click the downloaded file to start the installation process.
4. Follow through the installation prompts. In most cases, the default selections should be fine.
5. After the install, we'll want to verify Node installed successfully. Start by opening any Command Prompt/Terminal on your computer.
6. Enter the following into the command prompt and hit enter:
- node -v
If Node.js is installed, the Command Prompt should reply back with the version you have installed!

Related Articles
How to Install Phaser 3 to Your Project
In this article, we'll cover how to download and install Phaser 3 to your HTML5 projects. Downloading Phaser 3 1. Create a new folder to house your project. Then, inside that folder, create a folder titled "js" and an index.html file. You can also ...
How to Install Unity
This article will cover both how to install Unity for the first time, and how to install new versions of Unity for pre-existing installations. Before installation you may wish to review Unity's system requirements. First Time Installation Only - ...
How to Install MonoGame
This article will cover how to set up the MonoGame framework for game development. MonoGame recommends using Visual Studio Community for development - the setup of which is covered in this article. You can, however, use other code editors like Visual ...
How to Install GameMaker
This article will cover how to install the GameMaker engine. Before installation, you may wish to review GameMaker's system requirements. Downloading and Installing GameMaker 1. Head to the GameMaker download page at https://gamemaker.io/en/download ...
How to Install Rust
This article will briefly cover how to set up Rust for Rust-based projects. Installing Rust 1. Head to the Rust installation page at https://www.rust-lang.org/tools/install 2. The page should automatically detect your operating system and present you ...