为什么我不能在共享服务器上使用node.js?

时间:2016-03-25 05:07:49

标签: javascript node.js shared-hosting

我相信专家我听起来像个菜鸟......对node.js来说很新。我刚刚学到的一件事就是我可以用这样的东西开始一个基本的服务器..

var http = require("http");

http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8888);

现在我可以使用

访问cli了
$ node the-above-code.js

为什么不能在共享服务器上实现相同的目标,例如去吧爸爸?那有什么概念上的问题?

1 个答案:

答案 0 :(得分:1)

问题是godaddy不会让你改变apache设置让你绑定到端口8888.你必须让自己一个私人服务器才能做到这一点。

参考此主题: Why node.js can't run on shared hosting?