Chapter 6: Debugging Techniques
In Chapter 5, Building a Web-Based Frontend Application with Angular we completed the frontend application and, with this, the job order system case study has been completed. The focus of this book has been on developing a multiplatform application, based on a microservices architecture. We started the book with an introduction to Visual Studio Code (VS Code) features, and then moved on to developing the services and the frontend. If you have been following along, or have already downloaded the code base from the Git repository, we will now use the code base and explore the debugging features of VS Code.
Writing code is one part of programming, and efficiently debugging issues and solving them is another important part. People follow different techniques to locate bugs and fix them. This varies from writing console logs to using the extensive features provided by the development tool. Ultimately, you will find and fix the issue, but the real question...