What is NPM?
NPM stands for Node Package Manager. It is the default package manager for Node.js and
is used to install, share, and manage reusable packages or libraries.
It comes pre-installed with Node.js and gives you access to a huge ecosystem of
open-source tools.
📌 Example Use:
npm install express
This command downloads the Express.js library into your project.
✅ NPM also:
- Manages package versions
- Handles dependencies
- Supports scripts to automate tasks (npm run build, npm test, etc.)