LCM Logo
Programming

Node.js

Installation

There are several ways to install Node.js on your system. Our recommendation is to use the fnm version manager, which allows you to easily install and manage one or multiple versions of Node.js.

Install fnm

You can install fnm using Homebrew on macOS or Linux:

brew install fnm

You can use Scoop on Windows:

scoop install fnm

Install Node.js

You can install the latest LTS (Long Term Support) version of Node.js using fnm:

fnm install --lts

You can also install a specific version of Node.js:

fnm install 24.3.0

On this page