💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
使用inspector调试nodejs的优势 * 可查看上下文的变量 * 可观察当前函数调用堆栈 * 不侵入代码(如console.log需要在调试的地方侵入截断输出) * 可在暂停状态下执行指定代码 ## **inspector安装:** cmd定位到nodejs安装目录执行: ~~~ npm install --global node-inspect ~~~ 进入到你要调试的程序文件里,比如我要调试app.js,则执行node --debug app.js,如下 ``` node --debug app.js ```