How To Install node-eslint-plugin-requirejs on Kali Linux

In this tutorial we learn how to install node-eslint-plugin-requirejs on Kali Linux. node-eslint-plugin-requirejs is enforce code conventions for RequireJS modules with ESLint

Introduction

In this tutorial we learn how to install node-eslint-plugin-requirejs on Kali Linux.

What is node-eslint-plugin-requirejs

node-eslint-plugin-requirejs is:

eslint-plugin-requirejs provides a plugin for ESLint covering JavaScript code targeted RequireJS.

ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code.

RequireJS is a JavaScript file and module loader.

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

sudo apt-get -y install node-eslint-plugin-requirejs

Install node-eslint-plugin-requirejs Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install node-eslint-plugin-requirejs

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

sudo aptitude -y install node-eslint-plugin-requirejs

How To Uninstall node-eslint-plugin-requirejs on Kali Linux

To uninstall only the node-eslint-plugin-requirejs package we can use the following command:

sudo apt-get remove node-eslint-plugin-requirejs

Uninstall node-eslint-plugin-requirejs And Its Dependencies

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

sudo apt-get -y autoremove node-eslint-plugin-requirejs

Remove node-eslint-plugin-requirejs Configurations and Data

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

sudo apt-get -y purge node-eslint-plugin-requirejs

Remove node-eslint-plugin-requirejs configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge node-eslint-plugin-requirejs

Dependencies

node-eslint-plugin-requirejs have the following dependencies:

References

Summary

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