2016년 4월 14일 목요일

Node.js

Node.js

Node.js is Server-side JavaScript.

Node.js is a JavaScript platform based on Google Chrome's V8 engine.

 

Node.js 공식사이트: https://nodejs.org/en/

공부할 사이트:
1. http://www.tutorialspoint.com/nodejs/


준비과정:
1. Node.js 다운로드 & 설치
2. 에디터 설치


사용방법
1. .js 파일 만들어서 코드 넣고
2. windows -> menu -> cmd 검색 -> node 파일명.js  (나가기: Ctrl+c)
3. 웹브라우져에서 localhost:포트번호 로 확인


예제1. ) node.js 웹서버 만들기

var http = require('http');

http.createServer(function(req,res){
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('웹서버 만들기);
}).listen(8000);

console.log('localhost:8000에서 서버가 시작되었습니다.')


설명:
http.createServer :