이 글의 예시는 node.js의 helloworld 입력 예시를 알려줍니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
다음 코드를 E 드라이브 아래의 노드 디렉터리에 server.js로 저장합니다.
var http = require('http'); function myNode(request, response){ response.writeHead(200, {'Content-type':'text/plain'}); response.write('hello world'); //hello world response.end(); } http.createServer(myNode).listen(2222); //监听2222端口 console.log('Server has started'); //在控制台提示服务启动
그런 다음 Windows 명령줄에 node e:/node/server.js
를 입력하세요.서버가 시작되었음을 알리는 메시지(서버가 시작됨)를 확인한 후 브라우저에 http://localhost:2222/를 입력하면 아래와 같은 효과를 볼 수 있습니다.
실행 성공 후 효과
이 기사가 node.js 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.