在Smarterasp中部署节点应用程序

时间:2018-10-02 08:22:13

标签: node.js express node-modules

我正在smarterasp.net托管上部署nodejs应用程序。

当我部署真实的应用程序时,我正在跟踪此URL测试应用程序在主机上成功运行

以下无法获取/ MyAppName是我的配置代码

 app.set('port',process.env.PORT);
var app = express();
http.createServer(app).listen(app.get('port'), function () {
    console.log('Express server listening on port ' + app.get('port'));
});

smarterasp.net托管配置代码

var http = require('http');
http.createServer(function(req, res) {
    res.writeHead(200, {
        'Content-Type': 'text/plain'
    });
    res.end('Hello, world!');
}).listen(process.env.PORT);

任何人都知道我在哪里做错了,然后请帮忙。

0 个答案:

没有答案