NODEJS detect mobile nodejs - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

detect mobile nodejs


 318

NODEJS


1

// at first you install "npm i --save express express-device" in node.js command prompt

// this put into detect.js
var express = require('express');
var app = express();
var device = require('express-device');
app.use(device.capture());

app.get('/mydevice',function(req,res) {
res.send(req.device.type.toUpperCase()); // Possible Values: desktop, tv, tablet, phone, bot or car
});

app.listen(3000);
console.log("Listening to Port 3000");

// then put this url into browser http://localhost:3000/mydevice


By        
The power of the user (%)
7%

NODEJS


0

// at first you install "npm install express-useragent --save","npm install yamlparser --save","npm install request --save" in node.js command prompt

var express = require('express');

var app = express(),

useragent = require('express-useragent');

app.get('/', function(req, res){

var source = req.headers['user-agent'];

var info = useragent.parse(source);
var device = "";

if (info['isDesktop'] == true) {device = "desktop"}

else if (info['isMobile'] == true) {device = "mobile"}

else {device = "something else"}

res.send(device)
})

app.listen(3000);
console.log("Listening to Port 3000");


By        
The power of the user (%)
62%



The most helpful NODEJS solutions

get user ipget user ipNODEJS

Click to see more ...

  7.5K     1.7K

how to get client netmask using node.js ?how to get client netmask using node.js ?NODEJS

Click to see more ...

  4.2K     557

How to get client machine name and computer name with node.js?How to get client machine name and computer name with node.js?NODEJS

Click to see more ...

  12.1K     440

how to get client local ip address using node.js ?how to get client local ip address using node.js ?NODEJS

Click to see more ...

  2.3K     311

How to get client ip address using node.jsHow to get client ip address using node.jsNODEJS

Click to see more ...

  2.1K     271

How to combine node.js and jquery ?How to combine node.js and jquery ?NODEJS

Click to see more ...

  1.5K     247

how to detect tablet, iPad, iPhone, Android and Blackberry using nodejs ?how to detect tablet, iPad, iPhone, Android and Blackberry using nodejs ?NODEJS

Click to see more ...

  1.8K     161

get client region using node.js ?get client region using node.js ?NODEJS

Click to see more ...

  1.3K     128

get real user ip address using node.js?get real user ip address using node.js?NODEJS

Click to see more ...

  1K     124

get server ip address from hostname nodejsget server ip address from hostname nodejsNODEJS

Click to see more ...

  2.9K     122

Welcome aboard!
We are happy you are here and
wish you good net-raft!