我在mac 下用sublime text 3 搭建node开发环境,可以使用command+b来bulid node程序,但是第二次build会提示端口占用,怎样配置可以在build前杀死上一个进程? 我的配置如下:{ "shell_cmd": "node $file", "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.js", "shell":true, "encoding": "cp1252", "windows":
{ "cmd": ["taskkill /F /IM node.exe & node $file"]
}, "linux":
{ "cmd": ["killall node; node $file"]
}, "osx":
{ "cmd": ["killall node; node $file"]
}
}
添加回答
举报
0/150
提交
取消