November 2019
Beginner
804 pages
20h 1m
English
Another interesting alternative to debug your code is to make use of the VS Code debugger.
As with Chrome, you can define breakpoints by clicking next to a line:

Once done, you can start debugging by going to Debug | Start Debugging or by pressing F5:

The first time that you do so, VS Code will create a .vscode/launch.json file for you. This file tells VS Code what to do when it starts a debugging session. In our case, we can leverage the fact that we have Browsersync running in the background and adapt the ...
Read now
Unlock full access