NodeJS NPM


What is NPM?

NPM stands for Node Package Manager, and it's a powerful tool that allows you to easily install, manage, and share JavaScript packages.

With NPM, you can tap into a vast ecosystem of open-source libraries and frameworks, saving you time and effort in building your applications from scratch.

It's like having a treasure trove of pre-built components ready for you to use.


Installing Packages Locally

To install packages locally, open your command line interface and navigate to your project's directory. Then, use the following command: npm install package-name. This will download and install the specified package into your project's node_modules folder. 


Installing Packages Globally

Sometimes, you need packages that you can use across different projects, like development tools or command-line utilities.

In such cases, you can install packages globally using the --global flag with the npm install command. For example, npm install -g package-name. This installs the package globally on your system, making it accessible from any directory.


Adding Dependency in package.json

Now, let's talk about package.json, the heart of your Node.js project.

It keeps track of your project's metadata and dependencies. To add a new dependency to your package.json file, use the --save flag with the npm install command.

For example, npm install package-name --save. This will not only install the package but also update your package.json file, ensuring that your project can easily reproduce its dependencies.


Updating Packages

As you work on your project, new versions of packages may become available, containing bug fixes, performance improvements, or new features.

To update your project's dependencies, you can use the npm update command. It will automatically update your packages to their latest compatible versions.

It's like giving your project a refresh, ensuring that it benefits from the latest advancements in the package ecosystem.

Now that you have a solid understanding of NPM and managing packages, let's dive into the Node.js HTTPS module.


Uninstalling Packages

If you no longer need a package, you can uninstall it using the following command:

Replace package-name with the name of the package you want to uninstall.

That’s it! You've learned the basics of using NPM to manage packages and dependencies in your Node.js projects. NPM simplifies the process of adding, updating, and removing packages, allowing you to focus on building your application's functionality.

As you continue to develop projects, you'll find NPM to be an essential tool for efficiently managing and organizing the packages that enhance the capabilities of your Node.js applications.