How To Install node-meow on Debian 9
Introduction
In this tutorial we learn how to install node-meow on Debian 9.
What is node-meow
node-meow is:
Features Parses arguments using minimist Converts flags to camelCase Outputs version when –version Outputs description and supplied help text when –help Makes unhandled rejected promises fail loudly instead of default silent fail Sets the process title to the binary name defined in package.json
Node.js is an event-based server-side JavaScript engine.
There are three methods to install node-meow on Debian 9. 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-meow 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-meow using apt-get by running the following command:
sudo apt-get -y install node-meow
Install node-meow Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install node-meow using apt by running the following command:
sudo apt -y install node-meow
Install node-meow 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-meow using aptitude by running the following command:
sudo aptitude -y install node-meow
How To Uninstall node-meow on Debian 9
To uninstall only the node-meow package we can use the following command:
sudo apt-get remove node-meow
Uninstall node-meow And Its Dependencies
To uninstall node-meow and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove node-meow
Remove node-meow Configurations and Data
To remove node-meow configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge node-meow
Remove node-meow configuration, data, and all of its dependencies
We can use the following command to remove node-meow configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge node-meow
Dependencies
node-meow have the following dependencies:
- nodejs
- node-camelcase-keys
- node-loud-rejection
- node-trim-newlines
- node-map-obj
- node-decamelize
- node-object-assign
- node-minimist
- node-read-pkg-up
- node-normalize-package-data
- node-redent
References
Summary
In this tutorial we learn how to install node-meow package on Debian 9 using different package management tools: apt, apt-get and aptitude.