https://www.google.com/chrome/
https://chrome.google.com/webstore/detail/web-scraper/jnhgnonknehpejjnehehllkliplmbmhn
More tutorials: https://www.webscraper.io/
This document shows you how to debug Vue.js application from VS Code. https://v2.vuejs.org/v2/cookbook/debugging-in-vscode.html
The only problem that I get is that when I launched the debugger, it always opens the http://localhost:8080. And that's not what I want.
Instead, I want the debugger to start and step into the breakpoints when I open a link with Router directly for the first time.
An example: http://localhost:8080/#/IT/it/
In this case, what I did is: in VS Code, open the Command Palette: Cmd + Shift + P. Type in: Debugger: Open Link
| # The following scripts can be run from within your `~/dev` or `~/develop` or whatever folder you have for storing your source code as a developer. | |
| # Since, node_modules, .next or cdk.out are folders that can be re-created by running their respective install commands. | |
| # Using these 3 commands, I saved around 15GB of disk space. | |
| ``` | |
| find . -name "node_modules" -type d -prune -exec rm -rf '{}' + | |
| find . -name ".next" -type d -prune -exec rm -rf '{}' + | |
| find . -name "cdk.out" -type d -prune -exec rm -rf '{}' + | |
| ``` |