package.json 文件添加 debug,指定端口号,形如
--debug 5858
"scripts": {
"dev": "egg-bin dev --port 6001 --debug 5858",
然后
run-> edit configurations,点+,选择 node.js Remote Debug, 在打开的对话框,设置之前的端口号+1,比如之前设置5858, 这里设置5959
勾选住single distance only, 如下图
然后打断点,起服务
package.json 文件添加 debug,指定端口号,形如
--debug 5858
"scripts": {
"dev": "egg-bin dev --port 6001 --debug 5858",
然后
run-> edit configurations,点+,选择 node.js Remote Debug, 在打开的对话框,设置之前的端口号+1,比如之前设置5858, 这里设置5959
勾选住single distance only, 如下图
然后打断点,起服务
转载于:https://www.cnblogs.com/bbb324/p/8478404.html