Skip to content

Instantly share code, notes, and snippets.

@scarvell
Created December 3, 2013 01:50
Show Gist options
  • Select an option

  • Save scarvell/7762577 to your computer and use it in GitHub Desktop.

Select an option

Save scarvell/7762577 to your computer and use it in GitHub Desktop.
app.get('/', function(req, res){
var ua = req.header('user-agent');
if(/mobile/i.test(ua)) {
res.render('mobile.html');
} else {
res.render('desktop.html');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment