Node.js应用程序在Heroku上部署时会使用哪个Web服务器?
答案 0 :(得分:1)
由您决定。
Heroku的sample Node.js application使用Express:
express
.sh
脚本instantiates Express,然后在listens上port given by the PORT
environment variable bool isIn(std::vector<Car *> c, std::string check){
for (auto i = 0; i < c.size(); i++)
{
if (c[i]->dir == check)
{
return true;
}
}
return false;
specifies that web dynos should run node index.js
(尽管index.js
未指定Procfile
命令Heroku defaults to your application's start
script)根据我的经验,这将是一个常见的选择。
答案 1 :(得分:0)
您的Node.js应用程序是运行的Web服务器,但是Heroku使用Amazon Web Services(AWS)托管您的Web服务器。