이 글에서 다룰 내용은 Express를 이용해 웹페이지를 구현하기 위해 가장 기본적인 Routing 방법이다.먼저 전체 코드를 본 뒤 하나씩 알아가보도록 하자.var express = require('express');var app = express(); var getHtml = function(title,style,subtitle,description) { return `doctype html> ${title} ${style} ${subtitle} ${description} `;} app.get('/',function(request,response) { var title = 'Example'; var subtitle = 'This is Subtitle'; var description = 'This is..