How To Install libjs-underscore on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 420 words
Introduction
In this tutorial we learn how to install libjs-underscore
on Ubuntu.
What is libjs-underscore
libjs-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.
There are three methods to install libjs-underscore
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libjs-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 libjs-underscore
using apt-get
by running the following command:
sudo apt-get -y install libjs-underscore
Install libjs-underscore Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libjs-underscore
using apt
by running the following command:
sudo apt -y install libjs-underscore
Install libjs-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 libjs-underscore
using aptitude
by running the following command:
sudo aptitude -y install libjs-underscore
How To Uninstall libjs-underscore on Ubuntu
To uninstall only the libjs-underscore
package we can use the following command:
sudo apt-get remove libjs-underscore
Uninstall libjs-underscore And Its Dependencies
To uninstall libjs-underscore
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libjs-underscore
Remove libjs-underscore Configurations and Data
To remove libjs-underscore
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libjs-underscore
Remove libjs-underscore configuration, data, and all of its dependencies
We can use the following command to remove libjs-underscore
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjs-underscore
Dependencies
libjs-underscore have the following dependencies:
References
Summary
In this tutorial we learn how to install libjs-underscore
package on Ubuntu using different package management tools: apt, apt-get and aptitude.