最新回答 / 慕虎4365349
最后在stackoverflow找到解决方案,这主要由于上一次node.js server进程仍然还在运行没关闭掉,所以我们需要杀掉此进程,在mac上操作为:ps aux | grep nodetwer 7668 4.3 1.0 42060 10708 pts/1 Sl+ 20:36 0:00 node server twer 7749 0.0 0.0 4384 832 pts/8 S+ 20:37 0:00 grep --color=auto node从输出可以看见进程PID7668在使用,所以我们必须...
2016-09-27