我在命令提示符下初始化时收到Microsoft jscript运行时错误

时间:2018-03-23 18:08:43

标签: javascript node.js

enter image description here

在这里新建我不允许附上图片。所以这里是图像的链接,以便更清楚地解决我的问题。

脚本代码:

var http = require('http');
var dt = require('./myfirstmodule');
http.createServer(function (req, res) {
    res.writeHead(200, {
        'Content-Type': 'text/html'
    });
    res.write("The date and time is currently: " + dt.myDateTime());
    res.end();
}).listen(8080);

1 个答案:

答案 0 :(得分:0)

正如我之前提到的,您的代码没有问题。在Windows平台上首次执行使用http server创建的应用程序时,您将获得如下图所示的表单对话框。最好选中专用网络,然后点击允许访问

如果从Windows防火墙确认无法打开端口,您将收到以上错误。

enter image description here