Node.js Setup
Multiforum requires Node.js 22.x or higher for both the frontend and backend.
Installation
macOS
Using Homebrew:
brew install node@22
Or using nvm (recommended for managing multiple versions):
nvm install 22
nvm use 22
Linux (Ubuntu/Debian)
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs
Windows
Download the installer from nodejs.org or use nvm-windows.
Verify Installation
node --version # Should show v22.x.x
npm --version # Should show 10.x.x or higher
Next Steps
Once Node.js is installed, continue setting up the other prerequisites: