Book Image

IntelliJ IDEA Essentials

By : Jaroslaw Krochmalski
Book Image

IntelliJ IDEA Essentials

By: Jaroslaw Krochmalski

Overview of this book

Table of Contents (17 chapters)
IntelliJ IDEA Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Setting up the JavaScript debugger


Web applications are probably the most popular application type nowadays. If you work on the frontend, JavaScript debugging can come in handy. Of course, the JavaScript Developer Tools included in Chrome or Firefox's Firebug are very, very good. However, having a common IDE with a powerful editor, refactoring tools, and keyboard shortcuts to debug the backend and frontend at the same time will boost your productivity a lot without question. IntelliJ IDEA comes equipped with a fully featured JavaScript debugger. It's bundled as a JetBrains plugin and is enabled by default. If you happen to disable it, refer the Picking your plugins section in Chapter 1, Get to Know Your IDE, Fast, to enable it again.

You can install additional plugins to support JavaScript libraries such as AngularJS to get the code completion and hints in the editor.

The JavaScript debugger in IntelliJ IDEA communicates with the browser; it can be either Chrome or Firefox. Before you start...