我正在尝试将两个 node.js 文件上传到 koding.com 并运行它们。
index.js 包含:
var server = require("./server");
server.start();
和 server.js
var http = require("http");
var url = require("url");
function start() {
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(6665, '0.0.0.0');
console.log("Server has started.");
}
exports.start = start;
我在 vm 终端中输入jstq@vm-0:~$ node Web/IkapNodeJS/index.js
它给了我Server has started.
如果我要去http://jstq.kd.io/IkapNodeJS/index.js - 我看到 index.js 包含。当我将 :6665 添加到该网址时 - 找不到网址。
我如何查看带有 hello world 的页面?