NodeJs — Installing Node.js and npm
To get started with Node.js, install it from the official website. Node.js comes with npm (Node Package Manager) pre-installed, which allows you to install and manage packages and libraries. Verify installation by running node -v
and npm -v
in your terminal.
node -v
npm -v