main.js 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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') // }); }