How to Install WebStorm on CentOS 7

Table of Contents
Install WebStorm on CentOS 7
WebStorm is an intelligent and fully featured IDE for JavaScript developed by JetBrains. It also provides support for Typescript, and CSS etc. You can also extend WebStorm features by using plugins. By using WebStorm plugins you can also get support for frameworks like Node.js, Angularjs etc. We can also use WebStorm for other programming languages like HTML, SQL, CSS and more. In this tutorial, you are going to learn how to install WebStorm on CentOS 7.
Prerequisites
Before you start to install WebStorm on CentOS 7. You must have the non-root user account on your system with sudo privileges.
Install WebStorm
First we will download WebStorm using official WebStorm download page using wget command. At the time writing this tutorial the current latest version available is 2018.3.2
. You can check latest version for installation if you want.
sudo wget https://download-cf.jetbrains.com/webide/WebStorm-2018.3.2.tar.gz
Now extract the downloaded package using following command.
tar -xvf WebStorm-2018.3.2.tar.gz
Navigate inside the extracted directory.
cd WebStorm-2018.3.2
Now to run WebStorm like normal programs you should create symbolic link using the following command.
sudo ln -s ./WebStorm-2018.3.2/bin/webstorm.sh /usr/bin/webstorm
Start WebStorm
You can launch WebStorm using following command.
webstorm
On starting WebStorm first time you will be asked to import settings. If you have settings from older version then you can import or select “Do not import settings”.
You will get the following output after accepting the license and importing settings for setting up the initial configuration.

Conclusion
You have successfully learned how to install WebStorm on CentOS 7. If you have any queries regarding this then please dont forget to comment below.
LATEST POSTS
-
How to install Nginx on CentOS 7
-
How to install Node.js with npm on Debian 9
-
How to Add Swap Space on CentOS 7
-
How to Install R on Debian 10
-
How to Install MySQL on Debian 10
-
How to Install IntelliJ IDEA IDE on Fedora 29
-
How to Disable SELinux on CentOS 7
-
How to Rename Local and Remote Branches in Git
-
How to Install Gradle on Debian 9
-
How to Create New User and Grant Permissions in MySQL
-
Best Ways to Check MySQL Version
-
How to Install Redis on Debian 10