Skip to content

Instantly share code, notes, and snippets.

@getchenge
Created June 24, 2014 01:12
Show Gist options
  • Save getchenge/4917fed40d38a10aaf95 to your computer and use it in GitHub Desktop.
Save getchenge/4917fed40d38a10aaf95 to your computer and use it in GitHub Desktop.
router
app.get('/user/:id', function(req, res){
res.send('user ' + req.params.id);
});
"/user/:id"
/user/12
"/users/:id?"
/users/5
/users
"/files/*"
/files/jquery.js
/files/javascripts/jquery.js
"/file/*.*"
/files/jquery.js
/files/javascripts/jquery.js
"/user/:id/:operation?"
/user/1
/user/1/edit
"/products.:format"
/products.json
/products.xml
"/products.:format?"
/products.json
/products.xml
/products
"/user/:id.:format?"
/user/12
/user/12.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment