我使用Node.js构建了一个服务器端应用程序。当试图将该应用程序部署到Heroku时,我收到了一个"应用程序错误";Heroku页面上的消息。当查看日志时,我看到以下错误:
2021-11-30T10:11:16.238229+00:00 heroku[web.1]: Starting process with command `app.js`
2021-11-30T10:11:16.969594+00:00 app[web.1]: **bash: app.js: command not found**
2021-11-30T10:11:17.091877+00:00 heroku[web.1]: Process exited with status 127
2021-11-30T10:11:17.159203+00:00 heroku[web.1]: State changed from starting to crashed
我已经验证了我已经正确安装了npm和node,我在网上发现的所有类似错误都与卸载的节点有关,但错误是";node:命令未找到";,我得到的错误是不同的。
我的Procfile内容:
web: app.js
Procfile的名称是大写字母,没有扩展名。apps文件是我希望应用程序启动的地方。我已经将我的原始app.js文件更改为以下文件,以确保它与内容无关:
console.log('hey!')
和内包装.json:
"scripts": {
"test": "echo "Error: no test specified" && exit 1",
"start": "node app.js"
},
我不确定它是否与launch.json文件有关,但它包含以下内容:
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
您可以在"下看到localhost和任意端口号;url";。这可能是我的应用程序总体上不起作用的原因之一,但我不确定这是我目前出现错误的原因(我上面用黑体提到的那个错误(。
我的Procfile内容:
web: app.js
这是你的问题。
如果存在Procfile
,Heroku将运行在start
脚本中给出的命令之上的命令。您需要运行node
并在中传递您的脚本名称
web: node app.js