• This project
    • Loading...
  • Sign in

이해님 / term-project

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • term-project
  • router
  • main.js
  • haenim's avatar
    get user's timeline by twitter api · f848f7e7
    f848f7e7 Browse Files
    haenim authored 2020-12-02 04:06:39 +0900
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')
  // });

  
   

}