How To Install node-globby on Kali Linux

In this tutorial we learn how to install node-globby on Kali Linux. node-globby is Extends glob with promise API

Introduction

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

What is node-globby

node-globby is:

Extends glob with support for multiple patterns and exposes a Promise API.

Related projects includes multimatch which can match against a list instead of the filesystem and then glob-stream which is a streaming alternative finally matcher is simple wildcard matching.

Node.js is an event-based server-side JavaScript engine.

There are three methods to install node-globby 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-globby 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-globby using apt-get by running the following command:

sudo apt-get -y install node-globby

Install node-globby Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install node-globby

Install node-globby 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-globby using aptitude by running the following command:

sudo aptitude -y install node-globby

How To Uninstall node-globby on Kali Linux

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

sudo apt-get remove node-globby

Uninstall node-globby And Its Dependencies

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

sudo apt-get -y autoremove node-globby

Remove node-globby Configurations and Data

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

sudo apt-get -y purge node-globby

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

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

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

Dependencies

node-globby have the following dependencies:

References

Summary

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