Javascript is required
·
7 min read
·
9322 views

Why I Switched From Visual Studio Code to JetBrains WebStorm (IntelliJ)

Why I Switched From Visual Studio Code to JetBrains WebStorm (IntelliJ) Image

As I started my first JavaScript project in 2015, I used JetBrains WebStorm, which is an IDE (integrated development environment) for JavaScript development. I was already used to JetBrains IDEs as I worked before with Android Studio, which is based on IntelliJ IDEA. Additionally, I got a WebStorm license from my company and could use it without any restrictions.

As Visual Studio Code became increasingly popular, I used it for my further web projects. I liked it because it was much faster, highly customizable, and free so I could use it for my private projects.

In my current project, I met a developer who was confused that I was using an editor and not an IDE to develop large business applications. First, I did not consider his concerns, but now I understand him.

In this article, I want to tell you why I now mainly use WebStorm instead of VS Code for development.

Update

Nowadays (May 2023) I use both VS Code and IntelliJ.

I use VS Code for my private projects and presentations, mainly because it's the most popular tool for developing frontend code. There are a lot of extensions, that are only available for VS Code but not for IntelliJ. For example, Slidev, Pretty TypeScript Errors and many more.

But for my client projects, I still use IntelliJ due to its better refactoring, debugging and code analysis features.

By the way, I highly recommend this article, which provides a very good comparison between VS Code and IntelliJ.

Info

IntelliJ IDEA provides the same functionality as WebStorm plus a lot of other features. If I talk about using WebStorm, I also talk about using IntelliJ IDEA.

Preamble

This is a scorching topic, and I know this will cause some controversy. In the following article, I talk about my experience using WebStorm in a sizeable Angular application that was mainly developed in VS Code.

Code Inspection

WebStorm provides a robust, fast, and flexible static code analysis. This analysis detects any language and runtime errors and suggests corrections and improvements. It also indexes your whole project and can, for example, detect all unused methods, variables, and more.

You can also detect unused methods in JavaScript methods using VS Code and ESLint with the rules no-unused-vars and no-unreachable. But if you are, for example, using a TypeScript project (like Angular) VS Code does not detect unused public methods. See this simple example:

VS Code

VS Code unused method

WebStorm

WebStorm unused method

This can significantly impact the code quality of a sizeable Angular code base, which was mainly developed using VS Code.

To see the difference open your project, which was developed in VS Code with WebStorm, and run the code inspection. This feature convinced me that using WebStorm results in a cleaner code base.

Integrated Karma Tests

WebStorm has an integrated test runner, which I like. You can run your tests directly from the IDE and even debug them there.

Running my jasmine & Karma tests in WebStorm I can easily jump to the failed test code and rerun only this specific test. The following image shows such a test run:

WebStorm Karma Tests

My Angular unit test workflow in VS Code is typically to mark a describe or it test block with a f (e.g. fdescribe) which tells Karma only to run this specific test block. Alternatively, I use the karma-jasmine-html-reporter, where you can also define to run only specific tests by clicking on them on the HTML page.

There is currently also a VS Code Karma Test Adapter in development which should provide a similar integrated Karma test functionality for VS Code.

Unused Promises

Not waiting for promises can be tricky if you expect the following code to run only after the promise has been resolved. WebStorm shows if there are unresolved promises (in this case for a TypeScript application):

WebStorm

WebStorm Unused Promise

VS Code has currently no possibility to show this information:

VS Code

VS Code Unused Promise

Source Control / Git Integration

VS Code has, per default, a pretty basic git integration. You can either use extensions like GitLens or use additional tools like Sourcetree if you like to use a GUI for complex git work.

WebStorm provides all the functionality for complex git workflow out of the box. You can commit files, review changes, and resolve conflicts with a visual diff/merge tool in the IDE.

Local History

VS Code does not save a local history of your changes, but you can use extensions like Local History.

WebStorm automatically tracks all the changes you made to your files and protects you from accidentally losing these changes. You can inspect the history of files and directories and do rollbacks. This history can be useful if you, for example, did a git push force by accident and overwrote your files even on the remote branch.

Debugging

VS Code can only debug web applications on Chrome by using the Debugger For Chrome extension you to configure for your application.

Using WebStorm, you already have everything available per default, and, for example, for Angular, you just need to click "Debug Application" and you can set breakpoints in the editor and watch variables, etc.

Code Refactoring

In my opinion, refactoring code is much better than using WebStorm. You can rename a component, and it updates all file names and usages both in the HTML and in the TypeScript files. In general, all the JetBrains IDEs are well known for their refactoring features:

WebStorm Refactoring

A well-known feature of the JetBrain IDEs is Safe Delete. Using this functionality, you can safely remove files from your source code during refactoring. The IDE will first search for usages of the files, and if they are found, you can check them and make necessary before the files are deleted.

Unfortunately, VS Code is not that powerful at the moment.

Angular CLI Integration

WebStorm provides a good Angular CLI integration by the so-called Angular Schematics:

WebStorm Angular Schematics

In total, WebStorm has great Angular support as it assists in editing Angular templates and provides code completion for variables, pipes, and template reference variables.

Speed

VS Code is based on Electron and is powered by HTML & JavaScript.

WebStorm is developed in Java, which generally feels slower than VS Code. I would not say it is critically slower, but the speed difference is noticeable.

VS Code has a faster startup time, but if you are working on a project, your IDE or editor is always open, and startup time does not play a crucial role.

Accessibility Inspections For HTML

WebStorm provides inspections that are based on recommendations from Web Content Accessibility Guidelines (WCAG), which help you to write more accessible HTML code.

WebStorm Accessibility

Price

VS Code is open-source and free to use.

You need to pay for a WebStorm license unless you choose one of the free licenses available for open-source projects, students, teachers, classroom assistance or training courses, coding schools, and boot camps.

Another option is to use the EAP (Early Access Program). These pre-release versions include features that will be added to the next release. These versions are temporarily available before a new version of the software is released.

The official disclaimer for the EAP:

This is an early access version of the product. You expressly acknowledge that this version of the product may not be reliable, may not work as intended and may contain errors. Any use of the EAP product is at your own risk.

Conclusion

VS Code is more of an editor than an IDE like WebStorm. WebStorm has more features in its standard installation than VS Code in its default installation without any additional extensions.

Microsoft has created a fantastic product with VS Code, which you can use for larger business applications. Generally, I would prefer and recommend using WebStorm due to these reasons:

  • Better code analysis functionalities.
  • All-in-one IDE with good basic functionality without the need to install any additional plugins.
  • Much better code refactoring possibilities.

If you prioritize speed, prefer using open-source software, or want to edit some configuration files quickly, you should go for VS Code.

What are your experiences using VS Code and WebStorm? Let me know in the comments what you use to develop your application!

My VS Code & WebStorm Setup

The screenshots in this article show VS Code using the Material Dark Theme and WebStorm using the Material UI with Material Darker theme.

I will never share any of your personal data. You can unsubscribe at any time.

If you found this article helpful.You will love these ones as well.
Chrome Recorder: Record, Replay and Measure User Flows Image

Chrome Recorder: Record, Replay and Measure User Flows

How To Automatically Generate A Helpful Changelog From Your Git Commit Messages Image

How To Automatically Generate A Helpful Changelog From Your Git Commit Messages

Boost Your Productivity By Using The Terminal (iTerm & ZSH) Image

Boost Your Productivity By Using The Terminal (iTerm & ZSH)

How I Increased My Productivity With Visual Studio Code Image

How I Increased My Productivity With Visual Studio Code