我是Node.js的新手,我在Node.js中运行一个简单的'hello world'程序时遇到了问题
程序1:
console.log("hello world");
程序2:
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
运行这两个程序后,终端的外观如下:
>node hello.js
...
答案 0 :(得分:4)
您已在节点js命令提示符
中编写以下命令节点hello.js
你在终端中得到点(....),因为你没有给出hello.js文件的完整路径。
试试这个, 例如,假设hello.js文件的路径是C:\ files \ hello.js
所以,
节点C:\ files \ hello.js
这将为您的程序1显示正确的“Hello world”消息。 这可能会解决您的问题。
此致