Node.js 8장 - Expressnpm install express8.1 기본 서버var express = require('express'); var app = express(); app.use(function (request, response) { response.writeHead(200, { 'Content-Type': 'text/html' }); response.end('Hello express'); }); app.listen(52273, function () { console.log("Server Running at http://127.0.0.1:52273"); });http모듈을 사용하지 않는 이유는 무엇일까? 그것은 바로 express모듈이 더 많은 기능을 포함하고 있기 때문..