LCM Logo
Project Scaffolding

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:

shell
brew install fnm

You can use Scoop on Windows:

shell
scoop install fnm

Install Node.js

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

shell
fnm install --lts

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

shell
fnm install 24.3.0

On this page