app02.js 1.5 KB
"use strict"

var http = require('http'),
    path = require('path'),
    url = require('url'),
    fs = require('fs');

var DOCUMENT_ROOT = "../../05_CSS/";
var server = http.createServer(function(req, res) {
    var reqPath = url.parse(req.url).pathname; // 패스를 파싱함
    if (reqPath == "/") { // / 면 path에 해당 파일을 할당을 하라.
        reqPath = "ex01.html";
    }

    // FullPath는 Path의 Join, cwd 현재 워킹 디렉토리랑, 도큐먼트 루트, requirementPath를 Join
    var fullPath = path.join(process.cwd(), DOCUMENT_ROOT, reqPath);

    // 이후 파일을 리딩함
    fs.readFile(fullPath, "binary", function(err, file) {
        if (err) {
            // 파일 없으면 에러
            if (err.code == "ENOENT") {
                console.log("SEND 404 for " + req.url);
                res.writeHeader(404, { "Content-Type": "text/html" });
                res.write("<h1>Not found</h1>");
                res.end();
            } else {
                console.error("Error", err);
                res.writeHeader(500, { "Content-Type": "text/plain" });
                res.write(err + "\n");
                res.end();
            }
        } else {
            // 에러가 아닐경우 그대로 처리
            console.log("SEND 200 for " + req.url);
            res.writeHeader(200);
            res.write(file, "binary");
            res.end();
        }
    });
});

server.listen(3000, function() {
    console.log("Sever listeining on http://localhost:3000");
});