Installation of WebStorm

Step 1: Update and upgrade your system by running

$ sudo pacman -Syu

 

 

 

Step 2: Install snap from the official Arch repositories

$ sudo pacman -S snapd

 

 

Step 3: Enable snap by using the systemctl command

$ sudo systemctl enable --now snapd.socket

 

Step 4: Create a symbolic link between /var/lib/snapd/snap and /snap to enable classic support

$ sudo ln -s /var/lib/snapd/snap /snap

 

Step 5: Verify the installation by running

$ snap version

 

Step 6:  Finally, install WebStorm Idea using the snap with the –classic flag.

$ sudo snap install webstorm --classic

 

How to Install WebStorm IDE on Arch-based Linux Distributions (Manjaro)

WebStorm is a cross-platform integrated development environment (IDE) developed by Jetbrains and is available as a free community edition for students and a commercial edition. The WebStorm coding environment supports JavaScript frameworks such as React, Vue, Angular, Express, Meteor, Cordova, and NodeJS.

Similar Reads

Features of WebStorm

Cross-platform Free community version for students Smart code navigation Auto code completion Code refactoring Syntax highlighting, linting, debugging, profiling Unit testing and integration testing...

Installation of WebStorm

Step 1: Update and upgrade your system by running...

Getting Started with WebStorm

Now start WebStorm by searching it in the application menu....

Uninstallation of WebStorm

To uninstall WebStorm along with all of its dependencies run:...

Contact Us