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ノードは $PATH で実行可能であることが保証されています。
node path/to/your/server.js
npm start
で使用するスクリプトをコピーして に貼り付けて、動作するかどうかを確認しnpm startてください。Profile
Profile