Skip to content
DevDocs.
Home / Docs / Installation
Getting Started
Beginner
8 min
Updated May 18, 2026

Installation

Install dependencies with reproducible settings and verify build readiness.

setupnodenpmreproducibility

Prerequisites

  • Node.js 20+ available.
  • npm in PATH.
  • Access to repo root.

Outcomes

  • Stable local runtime
  • Clean install
  • Successful production build

warning: Avoid mixed package managers

Do not mix npm with yarn/pnpm in this repository unless migration is planned.

tip: Fix environment before coding

If build fails right after install, resolve environment issues first.

Confirm versions

Check node and npm versions before installation.

Install from root

Run npm install from repository root only.

Smoke build

Run npm run build immediately after install.

Code examples

Bootstrap

bash
node -v
npm -v
npm install
npm run build

Related articles