使用VS Code调试Node

时间:2022-10-17 14:17:44

1.双击打开vscode

2.找到底层面板 把ctrl改成LF

2.使用VS Code调试Node

3.打开文件夹,建立项目test

4.新建hellow.js

    输入:

var name='world';
var s='hello,${name}';
console.log(s)

5.调试

使用VS Code调试Node

在打开调试,没有配置右选择node.js

6.自动生成文件

使用VS Code调试Node

7.修改launch.js主入口文件为hellow.js

使用VS Code调试Node

8。切换debug 点击运行程序

使用VS Code调试Node

9.手动点击结束按钮即可结束node程序

使用VS Code调试Node