main.js 233 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 module.exports = function(app) { app.get('/',function(req,res){ //index.html 가져오기 res.render('index.html') }); app.get('/timeline/:id',function(req,res){ res.render('timeline.html') }); }