Node.js - 将HTML提供给远程客户端

时间:2015-09-11 06:10:45

标签: javascript html node.js

我正从Node.js服务器提供HTML文件。服务器代码是 -

var port = 3000;
var serverUrl = "0.0.0.0";

var http = require("http");
var path = require("path"); 
var fs = require("fs");         
console.log("Starting web server at " + serverUrl + ":" + port);

var server = http.createServer(function(req, res) {

    var filename = req.url || "/realtime-graph-meterNW.html";
    var ext = path.extname(filename);
    var localPath = __dirname;
    var validExtensions = {
        , '.css'   : 'text/css'
        , '.html'  : 'text/html'
        , '.js'    : 'application/javascript'
    };
    var isValidExt = validExtensions[ext];

    if (isValidExt) {

        localPath += filename;
        path.exists(localPath, function(exists) {
            if(exists) {
                console.log("Serving file: " + localPath);
                getFile(localPath, res, ext);
            } else {
                console.log("File not found: " + localPath);
                res.writeHead(404);
                res.end();
            }
        });

    } else {
        console.log("Invalid file extension detected: " + ext)
    }

}).listen(port, serverUrl);

function getFile(localPath, res, mimeType) {
    fs.readFile(localPath, function(err, contents) {
        if(!err) {
            res.setHeader("Content-Length", contents.length);
            res.setHeader("Content-Type", mimeType);
            res.statusCode = 200;
            res.end(contents);
        } else {
            res.writeHead(500);
            res.end();
        }
    });
}

当我尝试使用http://localhost:3000/realtime-graph-meterNW.html从我自己的PC上的浏览器运行HTML文件时,它可以正常工作。

但是当我尝试使用我的IP地址从同一网络上另一台PC上的浏览器访问相同内容时,我收到错误消息 - Failed to load resource: the server responded with a status of 503 (Service Unavailable)

我不知道我在哪里出错了。有什么建议吗?

1 个答案:

答案 0 :(得分:1)

可能您的本地防火墙阻止了端口3000与您的计算机的连接。

检查防火墙设置。 您必须允许从外部访问防火墙设置中的PC。

同时查看此问题和答案:

<强> https://mhut.ch/journal/2010/01/24/creating_mac_app_bundle_for_gtk_app

就像我所链接的问题所接受的答案一样,您必须确保输入正确的网址,例如 How could others, on a local network, access my NodeJS app while it's running on my machine? (如果您的IP为192.168.3.200) ,当尝试从LAN访问您的服务器时。