How To Install node-underscore on Ubuntu 22.04
Introduction
In this tutorial we learn how to install node-underscore on Ubuntu 22.04.
What is node-underscore
node-underscore is:
Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects. It’s the tie to go along with jQuery’s tux.
Underscore provides 60-odd functions that support both the usual functional suspects: map, select, invoke - as well as more specialized helpers: function binding, javascript templating, deep equality testing, and so on. It delegates to built-in functions, if present, so modern browsers will use the native implementations of forEach, map, reduce, filter, every, some and indexOf.
This package contains the NodeJS module.
There are three methods to install node-underscore on Ubuntu 22.04. 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-underscore 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-underscore using apt-get by running the following command:
sudo apt-get -y install node-underscore
Install node-underscore Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install node-underscore using apt by running the following command:
sudo apt -y install node-underscore
Install node-underscore Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install node-underscore using aptitude by running the following command:
sudo aptitude -y install node-underscore
How To Uninstall node-underscore on Ubuntu 22.04
To uninstall only the node-underscore package we can use the following command:
sudo apt-get remove node-underscore
Uninstall node-underscore And Its Dependencies
To uninstall node-underscore and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove node-underscore
Remove node-underscore Configurations and Data
To remove node-underscore configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge node-underscore
Remove node-underscore configuration, data, and all of its dependencies
We can use the following command to remove node-underscore configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge node-underscore
References
Summary
In this tutorial we learn how to install node-underscore package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.