Node.js Version
Fix Node.js version errors. Memoria requires Node.js 18+. Learn how to update Node.js using nvm or direct download.
The Problem
Memoria requires Node.js 18 or higher but your system has an older version.
Common Causes
- Node.js version is below 18
- Multiple Node.js versions installed
- Using system Node.js instead of nvm-managed version
Solutions
Check Current Version
Verify your current Node.js version.
node --versionUpdate Using nvm (Recommended)
Use nvm to install and switch to Node.js 20.
# Install nvm if needed
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
# Install Node.js 20
nvm install 20
nvm use 20
nvm alias default 20Direct Download
Download the latest Node.js LTS version from nodejs.org and install it.