【发布时间】:2014-03-10 14:56:27
【问题描述】:
我正在尝试用钛构建我的项目,但我总是收到此错误。
events.js:72 投掷者; // 未处理的“错误”事件 ^ 错误:生成 ENOENT 在 errnoException (child_process.js:988:11) 在 ChildProcess._handle.onexit (child_process.js:779:34) [rayhan@localhost test]$ appl
谷歌搜索让我得出结论,另一个 node.js 进程正在侦听同一端口。 所以我试图查看正在使用哪个进程运行
ps aus | grep node
我总是得到不同的 pid:
[rayhan@localhost test]$ ps aux | grep node
rayhan **1146** 0.0 0.0 8952 660 pts/0 S+ 12:26 0:00 grep node
[rayhan@localhost test]$ ps aux | grep node
rayhan **1148** 0.0 0.0 8952 660 pts/0 S+ 12:26 0:00 grep node
[rayhan@localhost test]$ ps aux | grep node
rayhan **1150** 0.0 0.0 8952 656 pts/0 S+ 12:26 0:00 grep node
[rayhan@localhost test]$ ps aux | grep node
rayhan **1152** 0.0 0.0 8952 660 pts/0 S+ 12:26 0:00 grep node
我试过了
forever list
info: No forever processes running
可能是什么问题?
谢谢
【问题讨论】:
-
代码是用“titanium create”生成的示例