Skip to main content

Posts

Showing posts from August, 2025

How to change Node JS version

First install the node.JS and NVM To use Node.js with NVM (Node Version Manager), you first need to install the desired Node.js version, then use it. Here's the sequence of commands: ✅ 1. Check installed Node versions : nvm ls ✅ 2. Install a specific Node.js version (e.g., 18) : nvm install 18 ✅ 3. Use a specific version : nvm use 18 ✅ 5. Verify the current version: node -v