# vscode调试
vscode的调试功能,需要在根目录下创建.vscode文件夹,里面新增一个配置文件launch.json,在需要打断点的地方打好断点,调试窗口点击配置好的任务就可以了。
# 调试script标签
增加3个标签:runtimeExecutable、runtimeArgs、port,其中,runtimeArgs后面的参数就是script的标签名称。
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "调试script",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"serve"
],
"port": 5858
}
]
}
# 调试js文件
以根目录下aa.js为例:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "调试node",
"skipFiles": [
"<node_internals>/**"
],
"program": "aa.js"
}
]
}