Get Started With WebStorm

Customize IDE

Adjust the IDE appearance and behavior to your needs and preferences.

Editor actions and code refactoring

WebStorm offers various features and shortcuts to help you write, edit, and refactor your code

Git

Perform Git actions from the WebStorm user interface.

Debugger

Learn how to set up the debugger for frontend projects.

Find and apply custom themes

Go to Settings (${ShowSettings}) | Plugins, open the Marketplace tab, find the plugin with the desired theme, click Install, then Apply.

Press ${QuickChangeScheme} to open the Switcher popup, then Theme and select the desired theme from the list.

Compact mode

To decrease the size of icons and toolbars, press Shift twice, type Compact Mode in the Search Everywhere popup, and press Enter to change the mode.

Plugins to customize your IDE

To adjust the IDE to your needs, check out the list of best plugins for WebStorm .

Use custom fonts in the editor

To use a custom font, configure its size and ligatures, go to Settings (${ShowSettings}) | Editor | Font.

Reformat code

Use ${ReformatCode} to reformat the code in a file.

Surround code with a tag

To wrap a selection in tags, press ${SurroundWith}.

Use multiple carets

To add an extra caret, press ${EditorAddOrRemoveCaret} at the desired location.
To remove an extra caret, press ${EditorAddOrRemoveCaret}.

Write console.log() fast

Type log and press ⇥(Tab) to insert console.log().

Select code fragments in the editor

To extend or shrink a selection, press ${EditorSelectWord} or ${EditorUnSelectWord}.

Comment and uncomment code

To comment or uncomment a line, press ${CommentByLineComment}. For a block comment, use ${CommentByBlockComment}.

Commit changes

Open the Commit tool window with ${ActivateCommitToolWindow} and use it to commit, push, and review changes in your files.
Double-click the file you want to see the diff for.

Update your project and work with branches

Click the branch name in the top left-hand corner and select Update Project. You can also work with branches from there.

How to set up debugger for frontend projects

1. Run the npm, yarn, or pnpm script to start the application in development mode.

2. Hold ⌘Shift or Ctrl+Shift and click the link to the application in the Run tool window or in the built-in Terminal

If this does not work, check out Start debugging in WebStorm Help or contact the JetBrains Support team .