You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, we run the backend debugged server and add some breakpoint into the code that we are going to be experimenting and testing with:
Then we navigate to our frontend working site and add some breakpoints into the code so that we can test our fetch for the JWT login API:
Then we go ahead and input the login credentials onto the frotend input and once you go back and navigate to the debug tab in your backend, you should see the code in the backend stopping at the breakpoint that we set at the start:
Because there is a breakpoint, we cannot run the local server and it would be down and unable to be accessed meaning that the data would also be unaccessible:
After going past all the breakpoints, we can see the success by the fact that the actual local host is running:
You can see after all the breakpoints are passed, we are able to see the login data being represented in the frontend so it can be used by the client:
Overall, debugging is a really improtant process and one that is really valuable especially to make sure that your code is working as it should and it is also a way for you to understand maybe some flaws that your code might have. Debugging definetly has a lot of application irregardless of what yur coidng, big or small but is a great way to undertsand the flow of data and as well ad how a fetch is operating.
The text was updated successfully, but these errors were encountered:
First, we run the backend debugged server and add some breakpoint into the code that we are going to be experimenting and testing with:
Then we navigate to our frontend working site and add some breakpoints into the code so that we can test our fetch for the JWT login API:
Then we go ahead and input the login credentials onto the frotend input and once you go back and navigate to the debug tab in your backend, you should see the code in the backend stopping at the breakpoint that we set at the start:
Because there is a breakpoint, we cannot run the local server and it would be down and unable to be accessed meaning that the data would also be unaccessible:
After going past all the breakpoints, we can see the success by the fact that the actual local host is running:
You can see after all the breakpoints are passed, we are able to see the login data being represented in the frontend so it can be used by the client:
Overall, debugging is a really improtant process and one that is really valuable especially to make sure that your code is working as it should and it is also a way for you to understand maybe some flaws that your code might have. Debugging definetly has a lot of application irregardless of what yur coidng, big or small but is a great way to undertsand the flow of data and as well ad how a fetch is operating.
The text was updated successfully, but these errors were encountered: