How To Install nodejs-normalize-package-data on CentOS 7

In this tutorial we learn how to install nodejs-normalize-package-data on CentOS 7. nodejs-normalize-package-data is Normalizes npm/package.json metadata

Introduction

In this tutorial we learn how to install nodejs-normalize-package-data on CentOS 7.

What is nodejs-normalize-package-data

normalize-package-data exports a function that normalizes package metadata. This data is typically found in a package.json file, but in principle could come from any source - for example the npm registry. normalize-package-data is used by read-package-json to normalize the data it reads from a package.json file. In turn, read-package-json is used by npm and various npm-related tools.

We can use yum or dnf to install nodejs-normalize-package-data on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install nodejs-normalize-package-data.

Install nodejs-normalize-package-data on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install nodejs-normalize-package-data using yum by running the following command:

sudo yum -y install nodejs-normalize-package-data

Install nodejs-normalize-package-data on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install nodejs-normalize-package-data using dnf by running the following command:

sudo dnf -y install nodejs-normalize-package-data

How To Uninstall nodejs-normalize-package-data on CentOS 7

To uninstall only the nodejs-normalize-package-data package we can use the following command:

sudo dnf remove nodejs-normalize-package-data

References

Summary

In this tutorial we learn how to install nodejs-normalize-package-data on CentOS 7 using yum and dnf.