babel-minify command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
babel-minify: command not found
or when using sudo you get the following error message
sudo: babel-minify: command not found
Solutions to babel-minify: command not found
How To Fix babel-minify: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu babel-minify is provided by babel-minify package.
babel-minify is:
Babel is a toolchain that is mainly used to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript in current and older browsers or environments.
To fix this problem, we can install more using the command below.
sudo apt-get -y install babel-minify
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install babel-minify.
sudo apt -y install babel-minify
Or if you have aptitude installed you can use the following command.
sudo aptitude install babel-minify
Summary
In this tutorial we learn how to fix babel-minify command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.