最佳答案
作为 node.js 环境和哲学的全新领域,我想回答一些问题。我已经下载了 node.js 用于 Windows Installer 和 node 包管理器。WindowsCmd 提示符目前用于运行 nodejs 应用程序。
Cls 清除命令窗口或命令提示符中的错误。是否存在与 node.js 等价的东西?Clear 不存在; (或者它以其他形式存在?)?
我通过下面的代码创建了一个服务器
var http = require("http");
http.createServer(function (request, response) {
response.writeHead(200, {
"Content-Type": "text/html"
});
response.write("Hello World");
console.log("welcome world")response.end();
}).listen(9000, "127.0.0.1");
i changed the code to below and refreshed the browser to find that content type does not change, how do i get to see the changes?
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
console.log("welcome world")
response.end();
}).listen(9000,"127.0.0.1");