简单的网页不会 运行 在 xbox one edge 浏览器上

Simple web page will not run on xbox one edge browser

我开始学习 html、css 和 nodejs,在写了几个非常基础的网页后,我尝试 运行 在我的电脑上查看它们我的 xbox-one 上的页面有边缘,但对于每个页面(无论多么简单)它总是显示 "Application is not supported, The webpage tried to start an application, such as an email program, that is not supported on xbox"。我试过使用节点 html 库以及 express 库,有和没有 html/css.

一个不能在 xbox 上运行的代码: server.js

var http = require('http');
var server = http.createServer(function (req, res) {
    res.writeHead(200, {"Content-Type": "text/plain"});
    res.end("hello world!");
})

var PORT = 1021;

server.listen(PORT);
console.log("Server is running on 192.168.0.15:", PORT, '\n');

我在网上找不到任何东西,所以非常感谢任何帮助

经过反复试验,我发现这是一个非常简单的问题,我将 192.168.0.15:12345 输入地址栏,但它想要 http://192.168.0.15:1021