-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debugging #3
Comments
Basically what I do when I want to see whats happening is I put a console.log wherever I need it.. If you want to debug the angular app, you need to have the angular dev server running, preferably concurrently with the backend server - for that purpose, run "npm run watch" - then, you put a console.log in the angular component or in some controller/resolver handler.. Heres an example: https://ibb.co/bx7LHd |
Hi, Consider adding a launch setting for vscode, for example: launch.json: {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Iniciar programa",
"program": "${workspaceFolder}\\index.js",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
} and in your index.js just run your app:
At the end just press F5 Key in visual studio code and add some breakpoint to start debugging. |
you can try this: |
You can also run ts-node directly with VSCode and therefore no transpilation is needed at all:
As of debugging Angular apps I'd use the chrome debugger, as described here: https://code.visualstudio.com/docs/nodejs/angular-tutorial . This way you can debug your angular frontend code in VSCode |
Any idea how to debug such an application? I am using VSCode. Can the same process debug the server and client code?
The text was updated successfully, but these errors were encountered: