使用节点静态找不到Localhost页面

时间:2019-02-28 19:52:41

标签: javascript node.js web webserver node-static

我正在尝试使用node-static提供静态文件。稍后,我打算使用nssm将其作为Windows服务运行。我以前已经运行过,但是不知道为什么,现在不起作用。

下面是我的代码:

var http = require('http');

var nStatic = require('node-static');

var fileServer = new nStatic.Server(); ---> I also tried new nStatic.Server('filepath')
//setting middleware

http.createServer(function (req, res) { 
        fileServer.serve(req, res);
}).listen(9000);

我在命令提示符下使用节点server.js启动服务器。这就是我所见

http://localhost:9000

节点-v 10.15.2 npm -v 6.4.1

谁能告诉我我做错了什么吗?

1 个答案:

答案 0 :(得分:0)

我必须使用完整路径,直到文件夹看到它的内容为止,由于我的本地主机:9000从来都不是文件,因此现在看来很明显。

我使用了类似的内容-http://localhost:9000/Test/test.txt