티스토리 뷰
반응형
.Node.js http 클래스를 활용한 기본 서버 구성
1 2 3 4 5 6 7 8 9 | var http = require("http"); http.createServer(function (req, res) { var body = "hello Server"; res.setHeader('Content-Type', 'text/html; charset=utf-8'); res.end("<h1>This is My Server~~~!</h1><div>"+body+"</div>") }).listen(3000); console.log('server is Started'); | cs |
line 1) http 모듈을 require()로 불러온다.
line 4) body에 넣을 text
line 5) response의 Header를 설정
line 7) 3000번 port로 서버 대기
반응형
'Web' 카테고리의 다른 글
[JDBC] JAVA JDBC(select, insert, delete, update) (2) | 2020.10.22 |
---|---|
[Node.js] cheerio module 로 크롤링하기 (0) | 2020.06.23 |
[Node.js] Express Framework 사용하기 (0) | 2020.06.22 |
[Node.js] mySQL 연동 (0) | 2020.06.22 |
[Node.js] NPM(Nodejs package manager) 활용하기 (0) | 2020.06.22 |
댓글