How To Install node-irregular-plurals on Kali Linux
Introduction
In this tutorial we learn how to install node-irregular-plurals on Kali Linux.
What is node-irregular-plurals
node-irregular-plurals is:
This package can be used to find the plural form of some nouns who have irregular plural form in English language only. If the noun ends in an “s”, “x”, “z”, “ch” or “sh”, add “es” If the noun ends in a “y” and is preceded by a consonant, drop the “y” and add “ies” If the noun ends in a “y” and is preceded by a vowel, add “s”
Node.js is an event-based server-side JavaScript engine.
There are three methods to install node-irregular-plurals on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install node-irregular-plurals Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install node-irregular-plurals using apt-get by running the following command:
sudo apt-get -y install node-irregular-pluralsInstall node-irregular-plurals Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install node-irregular-plurals using apt by running the following command:
sudo apt -y install node-irregular-pluralsInstall node-irregular-plurals Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install node-irregular-plurals using aptitude by running the following command:
sudo aptitude -y install node-irregular-pluralsHow To Uninstall node-irregular-plurals on Kali Linux
To uninstall only the node-irregular-plurals package we can use the following command:
sudo apt-get remove node-irregular-pluralsUninstall node-irregular-plurals And Its Dependencies
To uninstall node-irregular-plurals and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove node-irregular-pluralsRemove node-irregular-plurals Configurations and Data
To remove node-irregular-plurals configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge node-irregular-pluralsRemove node-irregular-plurals configuration, data, and all of its dependencies
We can use the following command to remove node-irregular-plurals configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge node-irregular-pluralsDependencies
node-irregular-plurals have the following dependencies:
References
Summary
In this tutorial we learn how to install node-irregular-plurals package on Kali Linux using different package management tools: apt, apt-get and aptitude.