This project uses nvm for managing the versions of node, and pnpm for installing packages and managing the monorepo project structure.
Use the one-line installation on the nvm website.
Install pnpm using npm
:
npm -g install pnpm
Install and use the right node
version:
nvm install
nvm use
Install the dependencies:
pnpm install
Build the project:
pnpm build
Run a build-watch while developing:
pnpm watch
Test the project:
pnpm test