How To Install node-concat-stream on Debian 11

In this tutorial we learn how to install node-concat-stream on Debian 11. node-concat-stream is writable stream that concatenates strings

Introduction

In this tutorial we learn how to install node-concat-stream on Debian 11.

What is node-concat-stream

node-concat-stream is:

Node-concat-stream creates a writable stream that concatenates strings or binary data and calls a callback with the result.

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

There are three methods to install node-concat-stream on Debian 11. 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-concat-stream 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-concat-stream using apt-get by running the following command:

sudo apt-get -y install node-concat-stream

Install node-concat-stream Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install node-concat-stream using apt by running the following command:

sudo apt -y install node-concat-stream

Install node-concat-stream 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 node-concat-stream using aptitude by running the following command:

sudo aptitude -y install node-concat-stream

How To Uninstall node-concat-stream on Debian 11

To uninstall only the node-concat-stream package we can use the following command:

sudo apt-get remove node-concat-stream

Uninstall node-concat-stream And Its Dependencies

To uninstall node-concat-stream and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove node-concat-stream

Remove node-concat-stream Configurations and Data

To remove node-concat-stream configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge node-concat-stream

Remove node-concat-stream configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge node-concat-stream

Dependencies

node-concat-stream have the following dependencies:

References

Summary

In this tutorial we learn how to install node-concat-stream package on Debian 11 using different package management tools: apt, apt-get and aptitude.