DEV Community

CodeSetupLab
CodeSetupLab

Posted on • Originally published at youtu.be

How to Install WebStorm on Windows 11 (Quick Setup Guide) ⚡

When it comes to JavaScript and TypeScript development, JetBrains WebStorm is easily one of the most powerful IDEs (Integrated Development Environments) out there. It comes packed with smart coding assistance, an integrated terminal, and built-in debugging tools right out of the box.

In this quick, beginner-friendly tutorial, we will walk through how to download, install, and configure WebStorm on Windows 11, and test the setup with a quick "Hello World" project.

If you prefer a step-by-step visual guide, you can follow along with the original video tutorial here. .


🛠️ Step 1: Download the Official WebStorm Installer

To get the most secure and up-to-date version, always download directly from JetBrains:

  1. Open your web browser and search for "WebStorm download".
  2. Click on the official JetBrains website (jetbrains.com/webstorm/download).
  3. Accept the cookie prompt if it appears, and select Windows as your operating system.
    • Note: If your machine uses an ARM processor, make sure to select the **Windows ARM64* installer.*
  4. Click the Download button to grab the standard .exe installation file.

⚙️ Step 2: Configure the Installation Options (Crucial Step)

  1. Navigate to your Downloads folder and double-click the WebStorm executable file to open the setup wizard.
  2. Click Next on the welcome screen.
  3. Choose your destination folder. The default path (C:\Program Files\JetBrains\...) works perfectly for most developers. Click Next.
  4. On the Installation Options screen, make sure to check the following boxes:
    • Create Desktop Shortcut: Handy for quick access.
    • Update PATH Variable (Restart needed): Crucial! Checking this ensures you can open files and run commands directly from your terminal/command prompt.
  5. Click Next, choose your Start Menu folder name (leave it as JetBrains), and click Install.
  6. Once the extraction completes, check the box to launch the IDE and click Finish.

🚀 Step 3: Verify the Installation with a Test Project

Let's make sure everything works perfectly by writing a tiny script:

  1. On the WebStorm welcome window, choose Skip Import if you don't have existing settings to bring over.
  2. Click the New Project button.
  3. Give your project a name (e.g., demo) and select your location path.
  4. Uncheck the Git repository box if you just want to run a quick local script, select JavaScript as the language, and click Create.
  5. Close out any initial plugin notifications to get a clean workspace.
  6. Open your main JavaScript file, clear out the default template, and type:

javascript
   console.log("Hello World");
Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
codesetuplab profile image
CodeSetupLab

Thanks for reading! Let me know if you ran into any issues setting this up, or what you're planning to build with Webstorm IDE! 🚀👇