我正嘗試在鈦中構建我的項目,但我總是遇到此錯誤。節點js始終運行
events.js:72 throw er; // Unhandled 'error' event ^Error: spawn ENOENT at errnoException (child_process.js:988:11) at ChildProcess._handle.onexit (child_process.js:779:34) [[email protected] test]$ appl
谷歌搜索引起我的結論是另一個node.js進程正在同一個端口上偵聽。 ,所以我想看看哪些進程正在使用
ps aus | grep node
我總是得到一個不同的PID運行:
[[email protected] test]$ ps aux | grep node
rayhan **1146** 0.0 0.0 8952 660 pts/0 S+ 12:26 0:00 grep node
[[email protected] test]$ ps aux | grep node
rayhan **1148** 0.0 0.0 8952 660 pts/0 S+ 12:26 0:00 grep node
[[email protected] test]$ ps aux | grep node
rayhan **1150** 0.0 0.0 8952 656 pts/0 S+ 12:26 0:00 grep node
[[email protected] 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
什麼可能是問題嗎?
感謝
的代碼是與生成的「鈦創造」的樣本 –