我想用Heroku創建一個node.js應用程序。在我的server.js文件中,我使用express來加載靜態html頁面。這是我的server.js文件中的快速代碼。在Heroku的proc文件中,我將其設置爲我的出發點。Heroku不會加載index.html
var app = require('express')();
var http = require('http').Server(app);
app.get('/', function(req, res){
res.sendFile(__dirname + 'index.html');
});
但是,當我把它推到的Heroku,Heroku的不顯示任何東西,所以也沒有錯誤。
server.js,index.html的是在同一文件夾
如果加上'的console.log(__目錄名)'你在控制檯中得到什麼? – Abdelouahab 2014-11-21 23:52:42
控制檯是空 https://tap-to-race.herokuapp.com/ – 2014-11-22 00:08:15
這是來自「Heroku的日誌」 http://pastebin.com/kMnewN1z – 2014-11-22 00:10:17