Open In App

How to install WebStorm on Ubuntu

Last Updated : 27 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

WebStorm is an awesome IDE for working with JavaScript web and app development. WebStorm has support for many Javascript frameworks. It has native support for NodeJS, ReactJS, VueJS, and many more. WebStorm is a JavaScript and associated technologies integrated development environment. It improves your development experience by automating routine operations and assisting you with complicated tasks, just like previous JetBrains IDEs. WebStorm is a coding environment for JavaScript and associated technologies such as TypeScript, React, Vue, Angular, Node. js, HTML, and style sheets.

Installation of WebStorm:

Step 1: WebStorm may be obtained by going to JetBrain’s official website and choosing Developer Tools > WebStorm using your preferred web browser.

 

Step 2: From the panel, pick the Download option.

 

Step 3: Double-check that Linux is selected. Then click on DOWNLOAD.

 

Step 4: Your browser will urge you to save the file. Simply click OK after selecting Save File.

 

Step 5: As you can see, the WebStorm archive is being downloaded.

 

Installation of WebStormStorm on Ubuntu:

This will walk you through installing WebStorm on Ubuntu.

Step 1: To begin, navigate to the /Downloads directory using the following command:

cd Downloads

 

Step 2: Now you can see the WebStorm archive file that we just downloaded. Make a note of the filename. Use the following command to list the files.

ls -lh

 

Step 3: Run the following command to extract the contents of the archive to the /opt directory.

sudo tar -xvf WebStorm-2022.1.1.tar.gz -C /opt

 

Step 4: Once the archive has been extracted, a new directory should be created within the /opt directory, as seen in the picture below. Keep in mind the directory’s name.

ls -lg /opt

 

Note: In our instance, the directory name is WebStorm-221.5591.52. It’s possible that it’ll be different for you. From now on, make sure you replace it with yours.

Step 5: You must launch WebStorm from the command line for the first time. Run the following command to do so:

/opt/WebStorm-221.5591.52/bin/webstorm.sh

 

Now WebStorm is successfully installed on our Ubuntu operating system.

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads