Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
过程文件是
web: npm start
错误日志显示
app[web.1]: bash: npm: command not found
Package.json 被解析得很好,安装工作正常。诊断的下一步是什么?
最好使用node path/to/your/server.js而不是npm start作为传递。Node 保证在 $PATH 中是可执行的。
node path/to/your/server.js
npm start
尝试将使用的脚本复制/粘贴npm start到您的Profile中,看看它是否有效!
Profile