How To Install rollup on Debian 10

Learn how to install rollup on Debian 10 with this tutorial. rollup is Next-generation ES6 module bundler

Introduction

In this tutorial we learn how to install rollup on Debian 10.

What is rollup

rollup is:

Rollup is a smaller, more efficient alternative to webpack and Browserify to bundle JavaScript files. Compared to the other tools for creating JavaScript bundles, Rollup will almost always create a smaller, faster bundle.

This happens because Rollup is based on ES2015 modules, which are more efficient than CommonJS modules, which are what webpack and Browserify use. It??s also much easier for Rollup to remove unused code from modules using something called tree-shaking, which basically just means only the code we actually need is included in the final bundle.

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

There are three methods to install rollup on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install rollup Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install rollup

Install rollup Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install rollup using apt by running the following command:

sudo apt -y install rollup

Install rollup 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install rollup using aptitude by running the following command:

sudo aptitude -y install rollup

How To Uninstall rollup on Debian 10

To uninstall only the rollup package we can use the following command:

sudo apt-get remove rollup

Uninstall rollup And Its Dependencies

To uninstall rollup and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove rollup

Remove rollup Configurations and Data

To remove rollup configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge rollup

Remove rollup configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge rollup

Dependencies

rollup have the following dependencies:

References

Summary

In this tutorial we learn how to install rollup package on Debian 10 using different package management tools: apt, apt-get and aptitude.