为ts-node注册一个vsc的debug任务,修改项目的launch.json文件,添加一个新的启动方式 代码语言:javascript 复制 {"name":"Current TS File","type":"node","request":"launch","args":["${workspaceRoot}/src/index.ts"// 入口文件],"runtimeArgs":["--nolazy","-r","ts-node/register"],"sourceMap...
为ts-node注册一个vsc的debug任务,修改项目的launch.json文件,添加一个新的启动方式 { "name": "Current TS File", "type": "node", "request": "launch", "args": [ "${workspaceRoot}/src/index.ts" // 入口文件 ], "runtimeArgs": [ "--nolazy", "-r", "ts-node/register" ], "source...
选择"ts-node Debugger"这个,点击左边的那个三角形运行按钮(或者按F5): 这时,vscode的debug console就开始显示东西了哦: 我的db连接有问题,所以我就在initDB函数那里打个断点后,再次运行debugger: 好了,可以看到断点生效了。 这个时候,程序文件那里也会出现这个debug工具条。 到这里,已经证明vscode的这个配置方法是有...
安装调试用到的包,当前目录,npm i ts-node typescript,生成node_modules目录 左边栏run and debug,选择node.js就可以debug了 异常: 自定义interface,debug报错SyntaxError: Unexpected identifier编辑于 2023-09-06 14:46・IP 属地福建 内容所属专栏 软件工具踩坑记录 软件工具踩坑记录 订阅专栏 ...
vscode中调试ts ts-node命令 一、新建ts文件 二、debug 添加配置 {// 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":[{"...
在开发过程中如何进行debug了。先上代码:package.json { "name": "node", "version": "1.0.0", "description": "", "main": "src/index.ts", "scripts": { "dev": "tsnd --respawn src/index.ts", "debug": "ts-node-dev --inspect=9230 --respawn --debug ./src/index.ts" }, "...
"name": "MigaoServerDebug", // 项目调试配置名称 "type": "node", // 调试的运行环境类型 "request": "launch", // 这里两个选项 launch 或 attach,launch为主配置,attach可以为你提供不同端口但同样代码的服务的调试,详细可参考官网 "args": [ // 固定参数,由字符串数组组成 ...
{"type":"node","request":"launch","name":"Nest 应用","runtimeArgs": ["--nolazy","-r","ts-node/register", ],"args": ["${workspaceFolder}/src/main.ts" ],"env": {"DEBUG":"yuedun:*,-not_this","NODE_ENV":"development" ...
[nodemon] startingnode --inspect=48487 --debug-brk index.jsDebugger listening on ws://127.0.0.1:48487/60beffd8-d508-4fd4-97e2-1126ce113733 For help see https://nodejs.org/en/docs/inspector Debugger attached. nodemon内部执行了相同的node命令 ...
node 脚本首先我们创建一个 test.js 脚本,然后在需要调试的行数前方点击添加上断点,并进入 Debug Terminal 通过 node test.js 来执行。picture 2可以看到执行后直接就开启了 VSCode 的 debug 模式,并且成功在断点出停住。npm script再来试试 npm script 方式,我们先新建一个 package.json,然后在 scripts 中...