How To Install tinyjsd on Debian 10

Learn how to install tinyjsd on Debian 10 with this tutorial. tinyjsd is Lightweight JavaScript Debugger for Thunderbird and SeaMonkey

Introduction

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

What is tinyjsd

tinyjsd is:

TinyJSD is a JavaScript debugger for Mozilla products (Firefox, Thunderbird, SeaMonkey). The key differences to debuggers like Firebug and the debugger built into Firefox are:

  • focused on debugging privileged code such as extensions and the application itself
  • simple user interface for easier use than complex debugger tools

There are three methods to install tinyjsd 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 tinyjsd Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install tinyjsd

Install tinyjsd Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install tinyjsd

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

sudo aptitude -y install tinyjsd

How To Uninstall tinyjsd on Debian 10

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

sudo apt-get remove tinyjsd

Uninstall tinyjsd And Its Dependencies

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

sudo apt-get -y autoremove tinyjsd

Remove tinyjsd Configurations and Data

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

sudo apt-get -y purge tinyjsd

Remove tinyjsd configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge tinyjsd

Dependencies

tinyjsd have the following dependencies:

References

Summary

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