无法使用 Heroku 部署 Node.js 应用程序:"bash: app.js: command not found"
Cannot deploy Node.js app with Heroku: "bash: app.js: command not found"
我使用 Node.js 构建了一个服务器端应用程序。尝试将应用程序部署到 Heroku 时,我通过 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 和节点,
我在网上找到的所有类似错误都与卸载节点有关,但错误是“节点:找不到命令”,而我得到的错误是不同的。
我的 Procfile 内容:
web: app.js
Procfile 的名称是大写字母,没有扩展名。
app.js 文件是我希望应用程序启动的位置。
我已将原始 app.js 文件更改为以下内容,以确保它与其内容无关:
console.log('hey!')
在package.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}"
}
]
}
您可以在“url”下看到本地主机和任意端口号。这可能是我的应用程序通常无法运行的原因之一,但我不确定这是我目前遇到错误的原因(我在上面以粗体字体提到的错误)。
My Procfile content:
web: app.js
那是你的问题。
如果 Procfile
存在,Heroku 将 运行 那里给出的命令覆盖 start
脚本中给出的命令。您需要 运行 node
并将您的脚本名称传递到:
web: node app.js
我使用 Node.js 构建了一个服务器端应用程序。尝试将应用程序部署到 Heroku 时,我通过 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 和节点, 我在网上找到的所有类似错误都与卸载节点有关,但错误是“节点:找不到命令”,而我得到的错误是不同的。
我的 Procfile 内容:
web: app.js
Procfile 的名称是大写字母,没有扩展名。 app.js 文件是我希望应用程序启动的位置。 我已将原始 app.js 文件更改为以下内容,以确保它与其内容无关:
console.log('hey!')
在package.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}"
}
]
}
您可以在“url”下看到本地主机和任意端口号。这可能是我的应用程序通常无法运行的原因之一,但我不确定这是我目前遇到错误的原因(我在上面以粗体字体提到的错误)。
My Procfile content:
web: app.js
那是你的问题。
如果 Procfile
存在,Heroku 将 运行 那里给出的命令覆盖 start
脚本中给出的命令。您需要 运行 node
并将您的脚本名称传递到:
web: node app.js