Skip to content
This repository was archived by the owner on Oct 18, 2025. It is now read-only.

NodeJS Setup

Frank Matranga edited this page Sep 17, 2019 · 12 revisions

All of LATE, the server on the backend and the frontend uses NodeJS, the JavaScript runtime environment that runs JS outside of the browser. When you install Node, npm (the package manager used in LATE) will also be automatically installed.

You must install Node v12, NOT 11 or 10.

Option 1: nvm (for WSL/Linux/macOS)

Install the Node Version Manager (nvm) by entering this command: $ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

After that is done, install Node v12 with $ nvm install 12 From that point on you have access to the node and npm commands which you will need for installing the required packages LATE depends on and actually running the site!

For more info you can check out the nvm repo

Option 2: Official Installation (for Plain Windows/macOS)

Official NodeJS website Recommended for Windows since it has an installer

Download website

Note: LATE will not work correctly with the "recommended" version. Click on the "Current" tab to get the most up-to-date version of NodeJS.

Clone this wiki locally