Skip to content
EventFabric CQRS Framework

Prerequisites

This is a part of the Get started guide.

Install on linux (debian, ubuntu …)

sudo apt update && sudo apt install git
  • fnm a NodeJS version manager (recommended)

Install fnm:

curl -fsSL https://fnm.vercel.app/install | bash

Install the latest LTS nodejs version (or your preferred version):

fnm install --lts

Switch to the LTS version:

fnm use lts/latest

Set as the default (Optional):

fnm default lts-latest

Verify the installation:

node -v

Use regular Node.js or an alternative runtime:

Node.js with pnpm as a package manager (100% Node.js)

npm i -g pnpm