1. 서버 생성
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8000);
console.log('Server running at http://localhost:8000/');
2. 서버 실행
node 파일명
3. 테스트
728x90
반응형
'Dev_Study > Node.js' 카테고리의 다른 글
[Node.js] 4. 파일내용을 본문에 구현하기 (0) | 2021.04.30 |
---|---|
[Node.js] 3. 파일 읽기 (0) | 2021.04.30 |
[Node.js] 2. 동적 웹페이지 만들기 (0) | 2021.04.30 |
[Node.js] 0. Node.js? (0) | 2021.04.29 |