main.js 139 Bytes Raw Blame History Permalink 1 2 3 4 5 6 module.exports = function(app) { app.get('/',function(req,res){ //index.html 가져오기 res.render('index.html') }); }