Grunt服务器没有错误,无法正常工作

时间:2014-07-25 06:49:21

标签: node.js gruntjs npm

Grunt没有给我一个错误,但当我导航到ip地址时,那里什么都没有。

我知道节点有效,因为我使用node来创建一个准系统服务器,它在同一个端口服务并且工作得很好。

当我尝试在准系统服务器运行时运行grunt时,它说端口被占用,所以我知道它至少认为它在该端口服务。

当我在本地计算机上使用相同的文件时,它工作正常,我可以导航到端口并且它可以工作。准系统服务器也是如此。

有关可能导致此问题的任何线索?顺便说一下,我使用你来安装angular-bootstrap。

对于准系统服务器,我只是这样做:

DIR=~/proj2/www
FILE=hello.js
mkdir -p $DIR
cat <<EOF >$DIR/$FILE
var http = require('http');
var server = http.createServer(function (request, response) {
  response.writeHead(200, {"Content-Type": "text/html"});
  response.end("<html><body>Hello World</body></html>");
});

server.listen(9000);
EOF

1 个答案:

答案 0 :(得分:0)

// Change this to '0.0.0.0' to access the server from 
hostname: 'localhost'

好吧,正如代码评论所说,你只需要将'localhost'改为'0.0.0.0'。

谢谢,我;你一直非常乐于助人!