오늘도 행복하다.
HOME
TAG
MEDIA
LOCATION
GUEST
ADMIN
WRITE
Category
분류 전체보기
(1012)
행복이야기
(24)
日常茶飯事
(601)
雜동사니
(285)
로그
(1)
ㅈㅇ.삭제.메모
(0)
산행->이동
(0)
野生野死
(38)
꺼리
(0)
업무
(1)
미완
(0)
운전, 車
(0)
상단, 공지, 계속
(0)
캠핑, 야영, 바깥놀이
(1)
eToy
(0)
Recent Article
Recent comment
My Link
지원이랑
Notice
Tag Cloud
[비교]
야구
여의도
山行
영어
grails
IKP 프로젝트
QPA2018 프로젝트
Enterprise Portal
Subversion
NTC 프로젝트
노숙일지
YNP 프로젝트
WSP 프로젝트
정리필요
Eclipse
쇼핑
자료
Tomcat
sap
먹거리
아키공부@
갈거야
테스트@
PHT 프로젝트
아웃도어 장비
1
9
YBD 프로젝트
wsp나중에
Calender
«
2025/01
»
일
월
화
수
목
금
토
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Archive
[미완-동적인거 추가하기][Simple Web Server] Node.js - http 모듈 이용
日常茶飯事
2013. 7. 7. 23:05
Posted by
pantarei
[미완-동적인거 추가하기][Simple Web Server] Node.js - http 모듈 이용
그 다음은 동적으로 처리, 그 다음은 ap서버처럼
- Hello World
var http = require('http'); http.createServer(function(req, res){ res.writeHead(200, {'Content-Type':'text/html'}); res.end('<h1>Hello world</h1>'); }).listen(7000, 'localhost');
- 파일
var http = require('http'); var fs = require('fs'); http.createServer(function(req, res){ fs.readFile(__dirname + '/index.html', function(err, data){ res.writeHead(200, {'Content-Type':'text/html'}); // res.end('<h1>Hello World</h1>'); res.end(data); }); }).listen(7000, function(){ console.log('Server running'); });
- 이미지
var http = require('http'); var fs = require('fs'); http.createServer(function(req, res){ fs.readFile(__dirname + '/수련.jpeg', function(err, data){ res.writeHead(200, {'Content-Type':'image/jpeg'}); res.end(data); }); }).listen(7000, function(){ console.log('Server running'); });
공유하기
게시글 관리
오늘도 행복하다.
저작자표시
비영리
변경금지
티스토리툴바
Recent comment