• This project
    • Loading...
  • Sign in

김건우 / OSS

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • OSS
  • Experiments
  • Experiments09
  • Tutorials
  • expressrouter
  • birds.js
  • 진성욱's avatar
    Chapter09 Added · e79c42f8
    e79c42f8
    진성욱 authored 2017-10-31 07:20:34 +0900
birds.js 239 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
var express = require('express');
var router = express.Router();


router.get('/', function (req, res) {
	  res.send('Birds home page');
})
router.get('/about', function (req, res) {
	  res.send('About birds');
});

module.exports=router;