// index00.js
=====================================
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
if (req.url === '/') {
res.statusCode = 200;
res.setHeader('Contene-Type', 'text/plain');
res.end('Hello Chris!!\n');
console.log('Logging... with /')
} else {
res.statusCode = 200;
res.setHeader('Contene-Type', 'text/plain');
res.end('ELSE sir!')
console.log('Logging... with ELSE')
}
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
=====================================
1. 호스트 세션
node index00.js
2. 클라이언트 세션
curl 127.0.0.1:3000
curl 127.0.0.1:3000/
curl 127.0.0.1:3000/user
curl 127.0.0.1:3000/test
입력시 다음과 같이 로그 발생하면 정상
'Infra > Node.js' 카테고리의 다른 글
Node.js 체험하기 - 4 _ 에러발생시켜보기 (0) | 2019.05.24 |
---|---|
Node.js 체험하기 - 3 _ expression 설치 및 사용 (0) | 2019.05.24 |
Node.js 체험하기 - 1 _ http로 호출하기 (0) | 2019.05.24 |
Node.js 기초 다지기를 위해 필요한 툴 설치 (0) | 2019.05.24 |
How to install Node.js in Windows (0) | 2019.05.24 |