我正在尝试调试Deno项目,但是我不知道如何使用 lldb调试器在Windows 10上调试该文档。
Windows 10上的LLDB似乎不太容易安装。
///reference path="../../deno.d.ts"
import * as deno from 'deno';
import { color } from 'https://deno.land/x/colors/main.ts';
const s = new Set();
[*] s.add('test')
console.log(s);
[*] <-断点
答案 0 :(得分:1)
为了使用Deno进行调试:
startWith()
行代码。debugger;
标志运行。 --inspect-brk
或面额deno run --inspect-brk ...
调试测试。test --inspect-brk ...
页面。答案 1 :(得分:0)
如果您使用VSCode,这是我正在使用的launch.json
。
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Deno",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "-A", "--inspect-brk", "index.ts"],
"port": 9229
}
]
}