How To Install node-inflection on Kali Linux

In this tutorial we learn how to install node-inflection on Kali Linux. node-inflection is port of inflection-js to node.js module

Introduction

In this tutorial we learn how to install node-inflection on Kali Linux.

What is node-inflection

node-inflection is:

inflection-js is a port of the functionality from Ruby on Rails’ Active Support Inflection classes into Javascript. inflection is a port of inflection-js to node.js npm package. Instead of extending JavaScript native String object like inflection-js does, inflection separate the methods to a independent package to avoid unexpected behaviors.

There are three methods to install node-inflection 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-inflection Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install node-inflection using apt-get by running the following command:

sudo apt-get -y install node-inflection

Install node-inflection Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install node-inflection using apt by running the following command:

sudo apt -y install node-inflection

Install node-inflection 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 update

After updating apt database, We can install node-inflection using aptitude by running the following command:

sudo aptitude -y install node-inflection

How To Uninstall node-inflection on Kali Linux

To uninstall only the node-inflection package we can use the following command:

sudo apt-get remove node-inflection

Uninstall node-inflection And Its Dependencies

To uninstall node-inflection and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove node-inflection

Remove node-inflection Configurations and Data

To remove node-inflection configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge node-inflection

Remove node-inflection configuration, data, and all of its dependencies

We can use the following command to remove node-inflection configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge node-inflection

Dependencies

node-inflection have the following dependencies:

References

Summary

In this tutorial we learn how to install node-inflection package on Kali Linux using different package management tools: apt, apt-get and aptitude.