node.js 환경과 철학에 완전히 새로운 것이므로 몇 가지 질문에 대한 답변을 원합니다. Windows 설치 관리자 및 노드 패키지 관리자 용 node.js를 다운로드했습니다. Windows Cmd 프롬프트는 현재 nodejs 앱을 실행하는 데 사용되고 있습니다.
cls는 명령 창이나 명령 프롬프트의 오류를 지 웁니다. node.js에 상응하는 것이 있습니까? console.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");
코드를 아래로 변경하고 브라우저를 새로 고침하여 콘텐츠 유형이 변경되지 않음을 확인했습니다. 변경 사항을 어떻게 볼 수 있습니까?
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");