Heroku node.js Hello World
登入
heroku login
建立應用
heroku create
or heroku create your_name
克隆這個例子
git clone https://github.com/zoutepopcorn/herokuworld
cd herokuworld
在瀏覽器中訪問應用
https://your_name.herokuapp.com/
可選測試本地:
heroku local web
檢查:lolhost:5000
那麼與普通的 node.js app 有什麼不同?的 package.json
"scripts": {
"start": "node index.js"
},
"engines": {
"node": "7.6.0"
}
index.js
process.env.PORT
本地埠:5000。Heroku 會將其對映到你的應用程式 URL 上的埠 80。