Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 npm 任务运行器资源管理器的 Visual Studio 2017。通过任务运行器,我正在使用 node 命令执行节点脚本。如何让 Visual Studio 调试调用的 Javascript?
从nodejstools 高级调试 wiki :
也可以附加到本地运行的 Node.exe 进程, 如果它是在启用调试的情况下启动的,使用“--debug”命令行参数:
因此,如果您使用 VS2017 任务运行器资源管理器通过 NPM 任务运行器扩展运行 npm 任务,则必须将 npm 脚本任务调整为如下内容:
"scripts": { "test": "node --debug .\\cool-script.js" },