2016년 5월 4일 수요일

node.js 간단 사용

#node js 설치

sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs


#실행

node *.js



#간단한 서버

var http = require('http');

var server = http.createServer(function (req, res) {
  res.writeHead(200, { 'Content-Type' : 'text/plain' });
  res.end('Hello World');
});

server.listen(8000);

#끝.

댓글 없음:

댓글 쓰기