0.0.8 • Published 12 years ago

mobile-agent v0.0.8

Weekly downloads
53
License
-
Repository
github
Last release
12 years ago

mobileagent

Easy mobile browser detection helper for Node.js

Simple Example (Node HTTP):

// Writes the user agent obj. out to the screen
var http = require('http');
var util = require('util');
var ua 	 = require('./mobile');

http.createServer(function (req, res) {
	var agent = ua(req.headers['user-agent']);

	res.writeHead(200, {'Content-Type': 'text/plain'});
	res.end(util.inspect(agent));
}).listen(8080);

util.log("Server listening on port 8080.");

/** Example output:
{ 
  Mobile: false,
  iOS: false,
  iPhone: false,
  iPad: false,
  Android: false,
  webOS: false,
  Mac: '10.8.1',
  Windows: false,
  Other: false,
  Browser: { 
  	name: 'safari', 
  	version: '536.25' 
  } 
}
**/

Express example:

var ua 	 = require('./mobile');

app.get('/', function(req, res) {
	var agent = ua(req.headers['user-agent'])

	if(agent.Mobile === true) {
		res.render('mobile', {
			foo: 'bar'
		});
	} else {
		res.render('desktop', {
			foo: 'bar'
		});
	}
});
0.0.8

12 years ago

0.0.7

12 years ago

0.0.6

12 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago