Notice
Recent Posts
Recent Comments
:: ADVANCE ::
[Node.js] Web Server 구축 본문
반응형
[Node.js] Web Server 구축
Node.js 설치하고
Node.js cmd에서 .js 파일이 있는 폴더 찾아들어간 다음에
> node name.js
하면 name.js 파일이 설치? 되고
localhost:port 치면 실행된다.
기본 웹 서버 구축 예제 코드
Server.js
1 2 3 4 5 6 7 8 | var http = require('http'); var server = http.createServer(function(request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('WebServer Text\n'); }).listen(8888); console.log('http.createServer test'); | cs |
[참고] 삼위일체 웹 프로그래밍 411p
반응형
'language > JavaScript' 카테고리의 다른 글
[Book] 1. 웹 서버와 웹 브라우저 (0) | 2015.03.09 |
---|---|
[Book] 삼위일체 웹 프로그래밍 (0) | 2015.03.09 |
[JavaScript] AJAX : Asynchronous JavaScript and XML (0) | 2015.03.08 |
[JavaScript] JavaScript란 (0) | 2015.03.08 |
Comments