sysvova.blogg.se

Intellij idea debug
Intellij idea debug













intellij idea debug

#INTELLIJ IDEA DEBUG CODE#

With IntelliJ IDEA, you can launch server-side TypeScript code on Node.js via the Node.js run configuration. Run and debug a server-side TypeScript application with Node.js In the Debug tool window, proceed as usual: step through the program, stop and resume the program execution, examine it when suspended, view actual HTML DOM, run JavaScript code snippets in the Console, and so on. You may need to refresh the page in the browser to get the controls in the Debug tool window available. The URL address specified in the run configuration opens in the browser and the Debug tool window appears. Select the newly created configuration from the Select run/debug configuration list on the toolbar and click the Debug button ( ) next to the list. This URL can be copied from the address bar of your browser as described in Step 3 above. In the Run/Debug Configuration: JavaScript Debug dialog that opens, specify the URL address at which the application is running. In the Edit Configurations dialog that opens, click the Add button ( ) on the toolbar and select JavaScript Debug from the list.

intellij idea debug

Alternatively, select Edit Configurations from the list on the toolbar. When the development server is ready, copy the URL address at which the application is running in the browser - you will need to specify this URL address in the run/debug configuration. For more information, refer to Compiling TypeScript into JavaScript. Most often, at this stage TypeScript is compiled into JavaScript and source maps are generated. Often you need to run npm start for that. Run the application in the development mode. To enable source maps generation, open your tsconfig.json and set the sourceMap property to true, as described in Create a tsconfig.json file.Ĭonfigure and set breakpoints in the TypeScript code. Most often, you may want to debug a client-side application running on an external development web server, for example, powered by Node.js.Ĭonfigure the built-in debugger as described in Configuring JavaScript debugger. Debug a TypeScript application running on an external web server If your application is running on the built-in IntelliJ IDEA server, refer to Running a client-side TypeScript application above, you can also debug it in the same way as JavaScript running on the built-in server. Click the icon that indicates the desired browser.ĭebug a client-side TypeScript application Hover over the code to show the browser icons bar. Then select the desired browser from the list. This HTML file does not necessarily have to be the one that implements the starting page of the application.Ĭhoose View | Open in Browser from the main menu or press Alt F2.

intellij idea debug

In the editor, open the HTML file with a reference to the generated JavaScript file. The only difference is that you can set breakpoints right in the TypeScript code.Ĭompile the TypeScript code into JavaScript. You can write a client-side application in TypeScript, compile the code as described in Compiling TypeScript into JavaScript, and then run and debug your application exactly in the same way as client-side applications written in JavaScript. As a result, you can set breakpoints in your TypeScript code, launch the application with the run/debug configuration of the type JavaScript Debug (for client-side code) or Node.js, and then step through your original TypeScript code, thanks to generated sourcemaps. You can do that using the built-in TypeScript compiler and other tools, including ts-node for running TypeScript with Node.js, used separately or as part of build process.ĭuring compilation, there can also be generated source maps that set correspondence between your TypeScript code and the JavaScript code that is actually executed. With IntelliJ IDEA, you can run and debug client-side TypeScript code and TypeScript code running in Node.js.ĭebugging of TypeScript client-side code is only supported in Google Chrome and in other Chromium-based browsers.įor more information about running and debugging TypeScript with Angular, refer to Running and debugging Angular applications.īefore running or debugging an application, you need to compile your TypeScript code into JavaScript.















Intellij idea debug