How To Install node-assume on Kali Linux
Introduction
In this tutorial we learn how to install node-assume
on Kali Linux.
What is node-assume
node-assume is:
Assume is an expect inspired assertion library who’s sole purpose is to create a working and human readable assert library for browsers and node. The library is designed to work with different assertion styles.
Assume is written with client and server-side Javascript in mind and uses commonjs module system to export itself.
This package is used as a build dependency for other Debian packages. Specifically it is used in the testing phase of the build process.
There are three methods to install node-assume
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-assume 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-assume
using apt-get
by running the following command:
sudo apt-get -y install node-assume
Install node-assume Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install node-assume
using apt
by running the following command:
sudo apt -y install node-assume
Install node-assume 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-assume
using aptitude
by running the following command:
sudo aptitude -y install node-assume
How To Uninstall node-assume on Kali Linux
To uninstall only the node-assume
package we can use the following command:
sudo apt-get remove node-assume
Uninstall node-assume And Its Dependencies
To uninstall node-assume
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove node-assume
Remove node-assume Configurations and Data
To remove node-assume
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge node-assume
Remove node-assume configuration, data, and all of its dependencies
We can use the following command to remove node-assume
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge node-assume
Dependencies
node-assume have the following dependencies:
References
Summary
In this tutorial we learn how to install node-assume
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.