Skip to content

Commit

Permalink
Merge main branch to 'debugging_nodejs.fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkoMTP committed Apr 29, 2024
2 parents 99831b7 + 39cffe6 commit 5ef3245
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nodeJS/introduction_to_nodeJS/debugging_node.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
### Introduction

Up until this point, you've likely only relied on the browser's DevTools to debug your code. <span id="two-ways">When it comes to debugging Node and server side code, VS Code has a handy built-in debugger that you can use to debug directly in your editor! Additionally, you can also set Google Chrome up to debug Node and get the full benefits of the Chrome DevTools. </span> Ultimately, this lesson will familiarize you with the Node debugger, which is a critical tool at this point in your learning, and will likely be a key tool you use daily in your professional life.

### Lesson overview
Expand All @@ -12,9 +13,10 @@ This section contains a general overview of topics that you will learn in this l

<div class="lesson-content__panel" markdown="1">

- Watch [this video tutorial about Node.js debugging in VS Code](https://www.youtube.com/watch?v=2oFKNL7vYV8&ab_channel=VisualStudioCode) to see the process in action.
- Watch [video tutorial about Node.js debugging in VS Code](https://www.youtube.com/watch?v=2oFKNL7vYV8&ab_channel=VisualStudioCode) to see the process in action.
- Check out the official [VS Code Node debugger documentation](https://code.visualstudio.com/docs/nodejs/nodejs-debugging). Take note of the Javascript Debug Terminal- this is an easy way to get the debugger running!
- Read [this article](https://web.archive.org/web/20230923074524/https://www.section.io/engineering-education/debug-node-devtools/) for a tutorial on how to debug Node with Chrome. NOTE: You can ignore anything that refers to debugging remote apps- you'll be debugging local apps.
Read this article for a tutorial on [how to debug Node with Chrome](https://web.archive.org/web/20230923074524/https://www.section.io/engineering-education/debug-node-devtools/).
NOTE: You can ignore anything that refers to debugging remote apps- you'll be debugging local apps.
</div>

### Knowledge check
Expand Down

0 comments on commit 5ef3245

Please sign in to comment.