Babel Installation On A Debian, Ubuntu, Arch, Kali, Fedora And Raspbian
Maintainer: Debichem Team
Email: [email protected] .
Website: http://openbabel.sourceforge.net
Section: science
Install babel
-
Debian
apt-get install openbabelClick to copy -
Ubuntu
apt-get install openbabelClick to copy -
Arch Linux
pacman -S openbabelClick to copy -
Kali Linux
apt-get install openbabelClick to copy -
Fedora
dnf install openbabelClick to copy -
Raspbian
apt-get install openbabelClick to copy
A transpiler which converts code from JavaScript ES6/ES7 syntax to ES5 syntax.
How to use babel?
Below are few example commands for babel that you can use in the terminal.
Transpile a specified input file and output to stdout:babel path/to/fileClick to copyTranspile a specified input file and output to a specific file:babel path/to/input_file --out-file path/to/output_fileClick to copyTranspile the input file every time it is changed:babel path/to/input_file --watchClick to copyTranspile a whole directory of files:babel path/to/input_directoryClick to copyIgnore specified comma-separated files in a directory:babel path/to/input_directory --ignore ignored_filesClick to copyTranspile and output as minified JavaScript:babel path/to/input_file --minifiedClick to copyChoose a set of presets for output formatting:babel path/to/input_file --presets presetsClick to copyOutput all available options:babel --helpClick to copy
Installing babel command is simple. just copy one of the above commands for your operating system and paste it into terminal. This command is available for Debian, Ubuntu, Arch, Kali, Fedora and Raspbian operating systems. Once you run the command it will install the latest version of babel 2026 package in your OS.




