본문 바로가기
Develop/Etc

[Node.js]웹 애플리케이션 만들기

by bellsilver7 2016. 10. 17.
728x90
const http = require('http');

const hostname = '127.0.0.1';
const port = 1337;

http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Hello World!!!\n');
}).listen(port, hostname, () => {
  console.log('Server running at http://${hostname}:${port}/')
})
728x90

'Develop > Etc' 카테고리의 다른 글

[Node.js]Express 설치  (0) 2016.10.17
[Node.js]DB(MySQL) 연동  (0) 2016.10.17
서브라임텍스트 SFTP 설정  (0) 2016.10.11
ICT란?  (0) 2016.10.02
Ionic 프로젝트 생성  (0) 2016.09.28

댓글