You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

node-device-detector

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-device-detector

Nodejs device detector (port matomo-org/device-detector)

2.2.2
latest
Source
npmnpm
Version published
Weekly downloads
30K
-8.3%
Maintainers
1
Weekly downloads
 
Created
Source

node-device-detector

Last update: 21/05/2025

Description

Port php lib matomo-org/device-detector to NodeJs

  • Online demo

Code Status

Chai YAML Lint Prettier CodeQL

Contents

Install

npm install node-device-detector --save

or

yarn add node-device-detector

Usage

// commonJS
const DeviceDetector = require('node-device-detector');
// or ESModule
import DeviceDetector from "node-device-detector";

const detector = new DeviceDetector({
  clientIndexes: true,
  deviceIndexes: true,
  osIndexes: true,
  deviceAliasCode: false,
  deviceTrusted: false,
  deviceInfo: false,
  maxUserAgentSize: 500,
});
const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const result = detector.detect(userAgent);
console.log('result parse', result);

Result parse

{ 
  os: { 
    name: 'Android',           // os name       
    short_name: 'AND',         // os short code name (format A-Z0-9{3})
    version: '5.0',            // os version
    platform: '',              // os platform (x64, x32, amd etc.)
    family: 'Android'          // os family
  },
  client:  { 
    type: 'browser',            // client type 
    name: 'Chrome Mobile',      // client name name
    short_name: 'CM',           // client short code name (only browser, format A-Z0-9{2,3})
    version: '43.0.2357.78',    // client version
    engine: 'Blink',            // client engine name (only browser)
    engine_version: ''          // client engine version (only browser)
    family: 'Chrome'            // client family (only browser)
  },
  device: { 
    id: 'ZT',                   // short code device brand name (format A-Z0-9{2,3})
    type: 'smartphone',         // device type
    brand: 'ZTE',               // device brand name
    model: 'Nubia Z7 max'       // device model name
    code: 'NX505J'              // device model code  (only result for enable detector.deviceAliasCode) 
    trusted: true               // device trusted (result only for enable detector.deviceTrusted and have fixture data + ClientHints are required)
    info: {}                    // device specs (result only fir enable detector.deviceInfo)
  }
}

Result parse empty

{ 
  os: {},                      // empty objects its os not found
  client: {},                  // empty objects its client not found
  device: {      
    id: '',                    // empty string its device brand not found
    type : 'device type',      // device type or empty string
    brand: '',                 // empty string its device brand not found
    model: ''                  // empty string its device model not found
  }
}

Helpers

[top]

// commonJS
const DeviceDetector = require('node-device-detector');
const DeviceHelper = require('node-device-detector/helper');
// or ESModule
import DeviceDetector from "node-device-detector";
import DeviceHelper from "node-device-detector/helper";

const detector = new DeviceDetector();
const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const result = detector.detect(userAgent);

/* check device type (feature phone, smartphone or phablet) */
DeviceHelper.isMobile(result);
/* check device type is desktop */
DeviceHelper.isDesktop(result);
/* check device type is tablet  */
DeviceHelper.isTablet(result);
/* check device type car (side panel in car)  */
DeviceHelper.isCar(result);
/* check device type feature phone (push-button telephones)  */
DeviceHelper.isFeaturePhone(result);
/* check device type smartphone  */
DeviceHelper.isSmartphone(result);
/* check device type phablet  */
DeviceHelper.isPhablet(result);
/* check device type game console (xBox, PlayStation, Nintendo etc)  */
DeviceHelper.isConsole(result);
/* check device type smart speaker (Alisa, Alexa, HomePod etc) */
DeviceHelper.isSmartSpeaker(result);
/* check device type SmartTV/TV box */
DeviceHelper.isTv(result);
/* check device type portable camera */
DeviceHelper.isCamera(result);
/* portable terminal, portable projector */
DeviceHelper.isPeripheral(result);
/* LCD panel or interactive panel  */
DeviceHelper.isSmartDisplay(result);
/* check device type boxes, blu-ray players */
DeviceHelper.isPortableMediaPlayer(result);
/* check device type watches, headsets */
DeviceHelper.isWearable(result);
/* result device type number id */
DeviceHelper.getDeviceTypeId(result);
/* result device type string */
DeviceHelper.getDeviceType(result);
/* result client type string */
DeviceHelper.getClientType(result);

Using DeviceDetector + ClientHints

[top]

// commonJS
const DeviceDetector = require('node-device-detector');
const DeviceHelper   = require('node-device-detector/helper');
const ClientHints    = require('node-device-detector/client-hints');
// or ESModule
import DeviceDetector from "node-device-detector";
import DeviceHelper from "node-device-detector/helper";
import ClientHints from "node-device-detector/client-hints";

const detector = new DeviceDetector({
  clientIndexes: true,
  deviceIndexes: true,
  osIndexes: true,
  deviceAliasCode: false,
  deviceTrusted: false,
  deviceInfo: false,
  // ... all options scroll to Setter/Getter/Options
});

/** server side use celint hinsts */
const clientHints = new ClientHints();
const userAgent = res.headers['user-agent'];
let headers = res.headers;
let meta = {}
/**
 option meta interface (needed to detect whether the device is trusted,
 this information can be obtained from browser)
 {
   width: '720',             //  Math.ceil(window.screen.width)
   height: '1440',           //  Math.ceil(window.screen.height)
   gpu: 'PowerVR SGX Doma',  //  (()=>{let e=document.createElement("canvas"),t=e.getContext("webgl")||e.getContext("experimental-webgl");return t?t.getParameter(t.getExtension("WEBGL_debug_renderer_info").UNMASKED_RENDERER_WEBGL):null})();
 }
 More details in file docs/CLIENT_HINTS_BROWSER.MD
 */
let hints = clientHints.parse(headers /* or body.hints */, meta /* or body.meta */);
const result = detector.detect(userAgent, hints);

// result promise
// added for 2.0.4 version or later
const result = detector.detectAsync(userAgent, hints);

Using parsers singly

[top]

Detect Bot

// commonJS
const DeviceDetector = require('node-device-detector');
// or ESModule
import DeviceDetector from "node-device-detector";

const userAgent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)';
const detector = new DeviceDetector();
const result = detector.parseBot(userAgent);

Detect Os

// commonJS
const DeviceDetector = require('node-device-detector');
// or ESModule
import DeviceDetector from "node-device-detector";

const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const detector = new DeviceDetector({
  clientIndexes: true,
  osIndexes: true,
  deviceIndexes: true,
  deviceAliasCode: false,
});
const result = detector.parseOs(userAgent/*, clientHintData*/);
console.log('Result parse os', result);  

Detect Client

// commonJS
const DeviceDetector = require('node-device-detector');
// or ESModule
import DeviceDetector from "node-device-detector";

const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const detector = new DeviceDetector({
    clientIndexes: true,
    deviceIndexes: true,
    osIndexes: true,
    deviceAliasCode: false,
});
const result = detector.parseClient(userAgent/*, clientHintData*/);
console.log('Result parse client', result);

Lite parse not detect brand

// commonJS
const DeviceDetector = require('node-device-detector');
// or ESModule
import DeviceDetector from "node-device-detector";

const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const detector = new DeviceDetector({
  clientIndexes: true,
  deviceIndexes: true,
  osIndexes: true,
  deviceAliasCode: false,
});
const resultOs = detector.parseOs(userAgent);
const resultClient = detector.parseClient(userAgent);
const resultDeviceType = detector.parseDeviceType(
 userAgent,
 resultOs,
 resultClient,
 {},
 /*, clientHintData */
);
const result = Object.assign({os:resultOs}, {client:resultClient}, {device: resultDeviceType});
console.log('Result parse lite', result);

Getter/Setter/Options

[top]

const detector = new DeviceDetector({
  osVersionTruncate: 0,      // Truncate OS version from 5.0 to 5 (default '' or null)
  clientVersionTruncate: 2,  // Truncate Client version Chrome from 43.0.2357.78 to 43.0.2357 (default '' or null)
  deviceIndexes: true,       // Using indexes for faster device search (default false)
  clientIndexes: true,       // Using indexes for faster client search (default false)
  osIndexes: true,           // Using indexes for faster os search (default false)
  deviceAliasCode: true,     // adds device code to result [device.code] as is (default false)
  maxUserAgentSize: 500,     // uses only 500 chars from useragent string (default null - unlimited)
  deviceTrusted: true,       // check device by specification (default false)
  deviceInfo: true,          // adds device specification to result [device.info] (default false)
});

// You can override these settings at any time using special setters, example
detector.osVersionTruncate = 0;
detector.clientVersionTruncate = 2;
detector.deviceIndexes = true;
detector.clientIndexes = true;
detector.osIndexes = true;
detector.deviceAliasCode = true;
detector.maxUserAgentSize = 500;
detector.deviceTrusted = true;
detector.deviceInfo = true;

// Array available device types
detector.getAvailableDeviceTypes();
// Array available devices brands
detector.getAvailableBrands();
// Array available browsers
detector.getAvailableBrowsers();

Specific methods

const DEVICE_PARSER_NAMES = detector.getDeviceParserNames(); // result colection names for device parsers 
const CLIENT_PARSER_NAMES = detector.getClientParserNames(); // result colection names for client parsers 
const OS_PARSER_NAMES = detector.getOsParserNames();         // result collection names for os parsers
const BOT_PARSER_NAMES = detector.getBotParserNames();       // result collection names for bot parsers   

const aliasDevice = detector.getParseAliasDevice();          // result AliasDevice parser
const deviceInfo = detector.getParseInfoDevice();            // result InfoDevice parser

// added custom parser
detector.addParseDevice('MyDeviceParser', new MyDeviceParser());
detector.addParseClient('MyClientParser', new MyClientParser());
detector.addParseOs('MyOsParser', new MyOsParser());
detector.addParseBot('MyBotParser', new MyBotParser());
// get single parser by name
detector.getParseDevice('MyDeviceParser' /* or DEVICE_PARSER_NAMES.MOBILE */);
detector.getParseClient('MyClientParser'  /* or CLIENT_PARSER_NAMES.BROWSER */);
detector.getParseOs('MyOsParser'/* or OS_PARSER_NAMES.DEFAULT */);
detector.getParseBot('MyBotParser');

Getting device code as it (experimental)

[top]

const DeviceDetector = require('node-device-detector');
const detector = new DeviceDetector()
const aliasDevice = detector.getParseAliasDevice();
const result = aliasDevice.parse(userAgent);
console.log('Result parse code model', result);
// or
const AliasDevice = require('node-device-detector/parser/device/alias-device');
const userAgent = 'Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36';
const aliasDevice = new AliasDevice();
const result = aliasDevice.parse(userAgent);
console.log('Result parse code model', result);

/*
result 
{
  name: "NX505J"
}
is not parse result  {name: ""}
*/

What about performance?

node tests/banchmark.js test result:

UA Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36
-----
┌──────────────────────┬─────────┬──────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼──────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │ '20,235' │    '±0.26%'     │      98      │
│ detector.parseClient │  'on'   │ '46,058' │    '±0.34%'     │      98      │
│   detector.parseOS   │  'on'   │ '20,317' │    '±0.32%'     │      97      │
│   detector.detect    │  'on'   │ '7,526'  │    '±0.76%'     │      92      │
└──────────────────────┴─────────┴──────────┴─────────────────┴──────────────┘
Other tests
UA Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36
-----
detector.parseDevice x 295,672 ops/sec ±0.79% (96 runs sampled)
detector.parseClient x 60,996 ops/sec ±0.60% (99 runs sampled)
detector.parseOS x 35,174 ops/sec ±0.28% (97 runs sampled)
detector.detect x 16,631 ops/sec ±0.21% (96 runs sampled)
┌──────────────────────┬─────────┬───────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │  ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼───────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │ '295,672' │    '±0.79%'     │      96      │
│ detector.parseClient │  'on'   │ '60,996'  │    '±0.60%'     │      99      │
│   detector.parseOS   │  'on'   │ '35,174'  │    '±0.28%'     │      97      │
│   detector.detect    │  'on'   │ '16,631'  │    '±0.21%'     │      96      │
└──────────────────────┴─────────┴───────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Linux; Android 12; M2101K9AG Build/SKQ1.210908.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.125 Mobile Safari/537.36 UCURSOS/v1.6_273-android
┌──────────────────────┬─────────┬──────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼──────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │ '13,671' │    '±0.42%'     │      96      │
│ detector.parseClient │  'on'   │ '9,154'  │    '±0.26%'     │      98      │
│   detector.parseOS   │  'on'   │ '15,087' │    '±0.36%'     │      99      │
│   detector.detect    │  'on'   │ '3,192'  │    '±0.29%'     │      97      │
└──────────────────────┴─────────┴──────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 239.2.0.17.109 (iPhone9,3; iOS 15_5; it_IT; it-IT; scale=2.00; 750x1334; 376668393) NW/3
┌──────────────────────┬─────────┬───────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │  ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼───────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │  '6,570'  │    '±0.30%'     │      98      │
│ detector.parseClient │  'on'   │ '113,007' │    '±0.41%'     │      99      │
│   detector.parseOS   │  'on'   │ '18,882'  │    '±0.24%'     │      99      │
│   detector.detect    │  'on'   │  '3,849'  │    '±0.46%'     │      97      │
└──────────────────────┴─────────┴───────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Linux; Android 8.0.0; RNE-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36
┌──────────────────────┬─────────┬──────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼──────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │ '3,951'  │    '±0.37%'     │      97      │
│ detector.parseClient │  'on'   │ '47,425' │    '±0.28%'     │      93      │
│   detector.parseOS   │  'on'   │ '21,305' │    '±0.39%'     │      96      │
│   detector.detect    │  'on'   │ '2,587'  │    '±0.39%'     │      98      │
└──────────────────────┴─────────┴──────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44
┌──────────────────────┬─────────┬───────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │  ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼───────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'on'   │ '280,116' │    '±1.63%'     │      97      │
│ detector.parseClient │  'on'   │ '58,553'  │    '±0.31%'     │      98      │
│   detector.parseOS   │  'on'   │ '38,153'  │    '±0.31%'     │      94      │
│   detector.detect    │  'on'   │ '15,530'  │    '±0.73%'     │      96      │
└──────────────────────┴─────────┴───────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36
┌──────────────────────┬─────────┬───────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │  ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼───────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │ '584,609' │    '±0.30%'     │      96      │
│ detector.parseClient │  'off'  │   '668'   │    '±70.73%'    │      97      │
│   detector.parseOS   │  'off'  │  '4,355'  │    '±0.31%'     │      98      │
│   detector.detect    │  'off'  │   '774'   │    '±0.23%'     │      96      │
└──────────────────────┴─────────┴───────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Linux; Android 5.0; NX505J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78 Mobile Safari/537.36
┌──────────────────────┬─────────┬─────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec │ margin of error │ runs sampled │
├──────────────────────┼─────────┼─────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │  '343'  │    '±49.33%'    │      94      │
│ detector.parseClient │  'off'  │  '526'  │    '±0.26%'     │      97      │
│   detector.parseOS   │  'off'  │ '3,694' │    '±0.23%'     │      97      │
│   detector.detect    │  'off'  │  '220'  │    '±27.12%'    │      87      │
└──────────────────────┴─────────┴─────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Linux; Android 12; M2101K9AG Build/SKQ1.210908.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.125 Mobile Safari/537.36 UCURSOS/v1.6_273-android
┌──────────────────────┬─────────┬─────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec │ margin of error │ runs sampled │
├──────────────────────┼─────────┼─────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │  '424'  │    '±0.25%'     │      95      │
│ detector.parseClient │  'off'  │ '6,414' │    '±0.43%'     │      96      │
│   detector.parseOS   │  'off'  │ '7,193' │    '±0.33%'     │      96      │
│   detector.detect    │  'off'  │  '268'  │    '±30.56%'    │      93      │
└──────────────────────┴─────────┴─────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 239.2.0.17.109 (iPhone9,3; iOS 15_5; it_IT; it-IT; scale=2.00; 750x1334; 376668393) NW/3
┌──────────────────────┬─────────┬──────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼──────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │ '2,990'  │    '±0.33%'     │      97      │
│ detector.parseClient │  'off'  │ '34,868' │    '±0.21%'     │      99      │
│   detector.parseOS   │  'off'  │ '3,379'  │    '±0.42%'     │      95      │
│   detector.detect    │  'off'  │ '1,274'  │    '±0.24%'     │      99      │
└──────────────────────┴─────────┴──────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Linux; Android 8.0.0; RNE-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36
┌──────────────────────┬─────────┬─────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │ ops/sec │ margin of error │ runs sampled │
├──────────────────────┼─────────┼─────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │  '603'  │    '±84.34%'    │      97      │
│ detector.parseClient │  'off'  │  '583'  │    '±0.38%'     │      97      │
│   detector.parseOS   │  'off'  │ '9,073' │    '±0.33%'     │      96      │
│   detector.detect    │  'off'  │  '272'  │    '±28.33%'    │      90      │
└──────────────────────┴─────────┴─────────┴─────────────────┴──────────────┘
-----
UA Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44
┌──────────────────────┬─────────┬───────────┬─────────────────┬──────────────┐
│    parse method      │ indexes │  ops/sec  │ margin of error │ runs sampled │
├──────────────────────┼─────────┼───────────┼─────────────────┼──────────────┤
│ detector.parseDevice │  'off'  │ '223,548' │    '±0.36%'     │      96      │
│ detector.parseClient │  'off'  │  '1,268'  │    '±0.47%'     │      99      │
│   detector.parseOS   │  'off'  │  '4,509'  │    '±0.59%'     │      94      │
│   detector.detect    │  'off'  │   '880'   │    '±0.25%'     │      96      │
└──────────────────────┴─────────┴───────────┴─────────────────┴──────────────┘

What about tests?

Yes we use tests, total tests: ~83.9k

Get more information about a device (experimental)

This parser is experimental and contains few devices. (1870 devices, alias devices 3970)

Support detail brands/models list:
Show details
BrandDevice countAlias count-BrandDevice countAlias count
3601213-884840
2e22-3gnet01
3q1462-4good101
4ife01-a101
accent05-ace80
acer568-acteck00
advan01-advance014
afrione02-agm40
ainol216-airness00
airo wireless10-airties00
ais02-aiuto00
aiwa00-akai25
alba01-alcatel29433
alcor10-alfawise00
aligator00-allcall03
alldocube26-allview046
allwinner03-altech uec00
altek10-altice00
altron01-amazon1930
amgoo215-amigoo00
amoi622-andowl00
anry00-ans00
aoc00-aoson06
apple4644-archos897
arian space42-ark136
armphone00-arnova036
arris00-artel02
artizlee01-asano01
asanzo10-ask00
assistant219-asus81230
at&t12-atom03
atvio00-avenzo13
avh10-avvio32
axxion00-azumi mobile01
bangolufsen00-barnes & noble16
bb mobile210-beeline111
bellphone11-benq01
beyond07-bezkam10
bigben10-bihee21
billion11-bird10
bitel41-bitmore21
bkav10-black bear20
black fox1812-blackview169
blu1315-bravis2417
cgv10-clarmin30
colors72-cyrus10
digifors11-engel11
firefly mobile41-formuler20
geotel30-gionee40
google35-hisense20
hoffmann11-hotwav181
huawei226586-i-mobile10
imo mobile50-infinix2640
inoi40-intex183
ipro67-irbis150
kiowa10-kurio33
lava11-lg127286
malata10-maze40
minix11-mivo32
mobicel31-motorola2826
noa10-nomi11
nuu mobile93-nuvo32
oneplus1848-oppo115215
oukitel80-öwn12
panasonic58-pipo50
poco915-realme6796
samsung176761-sharp24
sony44172-supra10
tecno mobile91131-tiphone10
ulefone80-utok10
uz mobile10-vernee92
vivo205297-walton130
we80-weimei10
wiko712-wileyfox90
wink40-xiaomi98
zync20-zyq113
const DeviceDetector = require('node-device-detector');
const detector = new DeviceDetector();
const infoDevice = detector.getParseInfoDevice();
const result = infoDevice.info('Asus', 'Zenfone 4');
console.log('Result information', result);
// or 
const InfoDevice = require('node-device-detector/parser/device/info-device');
const infoDevice = new InfoDevice();
const result = infoDevice.info('Asus', 'Zenfone 4');
console.log('Result information', result);

/*
result
{
  display: {
    size: '5.5',
    resolution: '1080x1920',  // width+height
    ratio: '16:9',
    ppi: "401"
  },
  size: '155.4x75.2x7.7',    // width+height+thickness
  weight: '165',
  hardware: {
    // ...
  }
  os: "Android 7.1",
  release: "2017.08",
  sim": "2",
}
is not found result null
*/

Cast methods

const InfoDevice = require('node-device-detector/parser/device/info-device');
const infoDevice = new InfoDevice;
infoDevice.setSizeConvertObject(true);
infoDevice.setResolutionConvertObject(true);
const result = infoDevice.info('Asus', 'Zenfone 4');
console.log('Result information', result);
/*
result
{  
  display: {
    size: "5.5",  // value in inchs
    resolution: {
      width: "1080", // value in px
      height: "1920" // value in px
    },
    ratio: "16:9",   // calculated field
    ppi: "401"       // calculated field
  },
  hardware: {
    ram: "4096",   // RAM value in megabytes
    cpu_id: 19,  // id cpu model in collection
    cpu: {
      name: "Qualcomm Snapdragon 630",  // brand + name
      type: "ARM",                      // architecture type 
      cores: "8",                       // number of cores / threads 
      clock_rate: 2200,                 // value in MHz
      gpu_id: 16                        // id gpu model in collection
	},
    gpu: {
      name: "Qualcomm Adreno 508",
      clock_rate: 650
    }
  },
  os: "Android 7.1",   // initial OS version
  release: "2017.08",  // date release or anonce
  sim": "2",           // count SIM 
  size: {           
    width: "75.2",     // physical width in millimeters
    height: "155.4",   // physical height in millimeters
    thickness: "7.7"   // physical thickness in millimeters
  },
  weight: "165"        // in grams
};
*/

Others

[top]

Examples

Support detect brands list (2080):
Show details
BrandBrandBrandBrandBrandBrandBrand
10moons2E3603GNET3GO3Q4Good
4ife5IVE7 Mobile8848A&KA1A95X
AAUWAccentAccesstyleAceAcelineAcepadAcer
ActeckactiMirrorAdreamerAdronixAdvanAdvanceAdvantage Air
AEEZOAFFIXAfriOneAG MobileAGMAIDATAAileTV
AinolAirisAirnessAIRONAirphaAirtelAirties
AirTouchAISAiutoAiwaAjibAkaiAKIRA
AlbaAlcatelAlcorALDI NORDALDI SÜDAlfawiseAlienware
AligatorAll StarAllCallAllDocubeallenteALLINmobileAllview
AllwinnerAlpsalpsmartAltech UECAltiboxAlticeAltimo
altronAltusAMAAmazonAmazon BasicsAMCVAMGOO
AmigooAminoAmoiANBERNICANCELanderssonAndowl
AngelcareAngelTechAnkerAnryANSANXONITAOC
AocosAocweiAOpenAoroAosonAOYODKGApoloSign
AppleAquariusArçelikArchosArian SpaceArivalArk
ArmPhoneArnovaARRISArtelArtizleeArtLineAsano
AsanzoAskAsperaASSEAssistantastro (MY)Astro (UA)
AsusAT&TAthesiAtlantic ElectricsAtmaca ElektronikATMANATMPC
ATOLAtomAtouchAtozeeAttilaAtvioAudiovox
AUPOAURISAutanAUXAvayaAvenzoAVH
AvvioAwowAWOXAXENAxiooAXXAAxxion
AYAAYYAAzeyouAZOMAzumi MobileAzupikb2m
BackcellBAFFBangOlufsenBarnes & NobleBARTECBASEBAUHN
BB MobileBBKBDFBDQBDsharingBeafonBecker
BeelineBeelinkBeetelBeistaBekoBellBellphone
BencoBenesseBenQBenQ-SiemensBenWeeBenzoBeyond
BezkamBGHBiegedyBigbenBIHEEBilimLandBillion
BillowBioRuggedBirdBitelBitmoreBittiumBkav
Black BearBlack BoxBlack FoxBlackpcsBlackphoneBlacktonBlackview
BlaupunktBleckBLISSBllocBlowBluBluboo
BluebirdBluedotBluegoodBlueSkyBluewaveBluSlateBMAX
BmobileBMWBMXCBobarrybogoBolvaBookeen
BoostBotechBowaybqBqeelBrandCodeBrandt
BRAVEBravisBrightSignBrigmtonBrondiBRORBS Mobile
BubblegumBundyBushBuzzTVBYDBYJU'SBYYBUO
C IdeaC5 MobileCADENACAGICaixunCamfoneCanaima
Canal DigitalCanal+CanguroCapitelCaptivaCarbon MobileCarrefour
CasioCasperCatCavionCCITCecotecCeibal
CelcusCelkonCell-CCellacomCellAllureCellutionCENTEK
CentricCEPTERCG MobileCGVChainwayChanghongCHCNAV
Cherry MobileChico MobileChiliGreenChina MobileChina TelecomChuwiCipherLab
CitycallCKK MobileClarestaClarminCLAYTONClearPHONEClementoni
CloudCloudfoneCloudpadCloutClovertekCMFCnM
CobaltCoby KyrosCogecoCOLORROOMColorsComioCommScope
CompalCompaqCOMPUMAXComTrade TeslaConceptumConcordConCorde
CondorConnectceConnexConquestCONSUNGContinental EdisonContixo
coocaaCOOD-ECoolpadCoopersCORNCosmoteCovia
CowonCOYOTECPDEVICECreNovaCrescentCrestronCricket
Crius MeaCronyCrosscallCrownCtroniqCubeCUBOT
CUDCuiudCultraviewCVTECwowdefuCXCyrus
D-LinkD-TechDaewooDanewDangcapHDDanyDaria
DASSDatalogicDataminiDatangDatawindDatsunDawlance
DazenDbPhoneDbtelDcodeDEALDIGDellDenali
DenkaDenverDesayDeWaltDEXPDEYIDF
DGTECDIALNDialogDicamDigiDigicelDIGICOM
DigidragonDIGIFORSDigihomeDigilandDigit4GDigmaDIJITSU
DIKOMDIMODinalinkDinaxDING DINGDiofoxDIORA
DISHDisneyDitecmaDivaDiverMaxDivisatDIXON
DLDMMDMOAODNSDoCoMoDofflerDolamee
Dom.ruDoogeeDooproDoovDopodDoppioDora
DORLANDDoroDPADRAGONDragon TouchDreamgateDreamStar
DreamTabDroidlogicDroxioDSDevicesDSICDtacDUDU AUTO
Dune HDDUNNS MobileDuoTVDurabookDuubeeDykemannDyon
E-BodaE-CerosE-TACHIE-telEagleEagleSoarEAS Electric
EasypixEBENEBESTEcho MobilesecomECONECOO
EcoStarECSEdenwoodEEEFTEGLEGOTEK
EhlelEinsteinEKINOXEKOEks MobilityEKTELARI
ELE-GATEElecsonElectroneumELECTRONIAElektaElektrolandElement
ElenbergElephoneElevateElistaelitElong MobileEltex
EmaticEmporiaENACOMENDUROEnergizerEnergy SistemEngel
ENIEEnoteNOVAEntityEnvizenEphoneEpic
Epik OneEpsonEquatorErgoEricssonEricyErisson
EssentialEssentielbeSTARETOEEtoneTouchEtuline
EudoraEurocaseEUROLUXEurostarEvercossEverestEverex
EverfineEverisEvertekEvolioEvolveoEvooEVPAD
EvroMediaevvoliEWISEXCEEDExmartExMobileEXO
ExplayExpress LUCKExtraLinkExtremEyemooEYUEzio
EzzeF&UF+F150F2 MobileFacebookFacetel
FacimeFairphoneFamocoFamousFantecFaRao ProFarassoo
FarEasToneFengxiangFenotiFEONALFeroFFF SmartLifeFiggers
FiGiFiGOFiiOFilimoFILIXFinePowerFINIX
FinluxFireFly MobileFISEFisionFITCOFluoFly
FLYCATFLYCOAYFMTFNBFNFFobemFondi
FonosFONTELFOODOFORMEFormovieFormulerForstar
FortisFortuneShipFOSSiBOTFour MobileFourelFoxconnFoxxD
FPTfreeFreetelFreeYondFRESHFrunsiFuego
FUJICOMFujitsuFunaiFusion5Future Mobile TechnologyFxtecG-Guard
G-PLUSG-TiDEG-TouchGalacticGalatecGalaxy InnovationsGamma
Garmin-AsusGatewayGazalGazerGDLGeaneeGeant
Gear MobileGeminiGeneral MobileGenesisGeo PhoneGEOFOXGeotel
GeotexGEOZONGetnordGFiveGfoneGhiaGhong
GhostGigabyteGigasetGiniGinzzuGioneeGIRASOLE
GlobexGlobmallGlocalMeGlofiishGLONYXGlory StarGLX
GN ElectronicsGOCLEVERGocommaGoGENGol MobileGOLDBERGGoldMaster
GoldStarGolyGomeGoMobileGOODTELGoogleGoophone
GooweelGOtvGplusGradienteGraetzGrapeGreat Asia
GreeGreen LionGreen OrangeGreentelGressoGretelGroBerwert
GrünbergGrundigGtelGTMEDIAGTXGuophoneGVC Pro
H133H96HafuryHaierHaipaiHaixuHamlet
HammerHandheldHannSpreeHanseaticHansonHAOQINHAOVM
HardkernelHarperHartensHaseeHathwayHAVITHDC
HeadWolfHECHeimatHelioHemiltonHEROHexaByte
HezireHiHi NovaHi-LevelHibergHiByHigh Q
HIGH1ONEHighscreenHiGraceHiHiHiKingHiMaxHIPER
HipstreetHiremcoHisenseHitachiHitechHKCHKPro
HLLOHMDhocoHOFERHoffmannHOLLEBERGHomatics
HometechHOMIIHomtomHoneywellHongTopHONKUAHGHoozo
HopelandHorionHorizonHorizontHosinHot PepperHOTACK
HotelHOTREALSHotwavHowHPHTCHuadoo
HuaganHuaviHuaweiHugerockHumanwareHumaxHUMElab
HurricaneHuskeeHyattaHykkerHyricanHyteraHyundai
HyveI KALLi-CherryI-INNi-Joyi-matei-mobile
I-PlusiBalliBerryibowiniBritIconBITIcone Gold
iDataIDCiDinoiDroidiFITiGetiHome Life
iHuntIkeaIKI MobileiKoMoiKoniKoniaIKU Mobile
iLAiLepoiLifeiManImaqiMarsiMI
IMO MobileImoseImpressioniMuziNaviINCARInch
IncoInduramaiNewInfinitonInfinityProInfinixInFocus
InfoKitInfomirInFoneInhonInkaInktiInnJoo
InnosInnostreamiNo MobileInoiiNOVAinovoINQ
InsigniaINSYSIntekIntelIntexInvensInverto
InviniOceanIOTWEiOutdooriPEGTOPiProiQ&T
IQMIRAIrbisiReplaceIrisiRobotiRola
iRuluiSafe MobileiStariSWAGITiTeliTruck
IUNIiVAiViewiVooMiivviiWaylinkiXTech
iYouiZotronJamboJAY-TechJediJeepJeka
JesyJFoneJiakeJiayuJin TuJingaJio
JiviJKLJollaJoyJoySurfJPayJREN
JumperJuniper SystemsJust5JUSYEAJVCJXDK-Lite
K-TouchKaanKaiomyKalleyKanjiKapsysKarbonn
KataKATV1KazamKazunaKDDIKempler & StraussKenbo
KendoKeneksiKENSHIKENWOODKenxindaKGTELKhadas
KianokidibyKingboxKingstarKingsunKINGZONEKinstone
KiowaKiviKlipadKMCKN MobileKocasoKodak
KoganKomuKonkaKonrowKoobeeKoolneeKooper
KOPOKoraxKoridyKoslamKraftKREZKRIP
KRONOKrüger&MatzKT-TechKUBOKuGouKuliaoKult
KumaiKurioKVADRAKvantKydosKyoceraKyowon
KzenKZGL-MaxLAIQLand RoverLandvoLanin
LanixLarkLaserLaurusLavaLCTLe Pan
Leader PhoneLeagooLebenLeBestLectrusLedstarLeEco
LeelboxLeffLegendLekeLemcoLEMFOLemhoov
LencoLenovoLeotecLephoneLesiaLexandLexibook
LGLibertonLifemaxxLimeLingboLingwinLinnex
LinsarLinsayListoLNMBBSLoeweLOGANLogic
Logic InstrumentLogicomLogikLogitechLOKMATLongTVLoview
LovmeLPX-GLT MobileLumigonLumitelLumusLuna
LUNNENLUOLuxorLvilleLWLYFLYOTECH LABS
M-HorseM-KOPAM-TechM.T.T.M3 MobileM4telMAC AUDIO
MacooxMafeMAGMAGCHMagentaMagicseeMagnus
MajesticMalataMangoManhattanMannManta MultimediaMantra
MaraMarshalMascomMassgoMasstelMaster-GMastertech
Matco ToolsMatrixMaunfeldMaxcomMaxfoneMaximusMaxtron
MAXVIMaxwellMaxwestMAXXMazeMaze SpeedMBI
MBKMBOXMcLautMDC StoreMDTVmeanITMecer
MECHENMecoolMediacomMedionMEEGMEGA VISIONMegacable
MegaFonMEGAMAXMeituMeizuMelroseMeMobileMemup
MEOMESWAOMetaMetzMEUMicroMaxMicrosoft
MicrotechMightierMinixMintMinttMioMione
mipoMirayMitchell & BrownMitoMitsubishiMitsuiMIVO
MIWANGMIXCMiXzoMLABMLLEDMLSMMI
MobellMobicelMobiIoTMobiistarMobile KingdomMobiolaMobistel
MobiWireMoboMobvoiMode MobileModecomMofutMoondrop
MORTALMosimosiMotivMotorolaMotorola SolutionsMovicMOVISUN
MovitelMoxeemPhoneMpmanMSIMStarMTC
MTNmultiboxMultilaserMultiPOSMULTYNETMwalimuPlusMYFON
MyGicaMygPadMymagaMyMobileMyPhone (PH)myPhone (PL)Myria
MyrosMysteryMyTabMyWigoN-oneNabiNABO
NanhoNaomi PhoneNASCONationalNavcityNavitechNavitel
NavonNavRoadNECNecnotNedaphoneNeffosNEKO
NeoneoCoreNeolixNeomiNeon IQNeoregentNesons
NetBoxNetgearNetmakNETWITNeuImageNeuTabNEVIR
New BalanceNew BridgeNewalNewgenNewlandNewmanNewsday
NewsMyNexaNexarNEXBOXNexianNEXONNEXT
Next & NextStarNextbitNextBookNextTabNG OpticsNGMNGpon
NikonNILAITNINETECNINETOLOGYNintendonJoyNOA
NoainNobbyNoblexNOBUXnoDROPOUTNOGANokia
NomiNomuNoontecNordfrostNordmendeNORMANDENorthTech
NosNothingNousNovacomNovexNoveyNOVIS
NoviSeaNOVONTT WestNuAnsNubiaNUU MobileNuVision
NuvoNvidiaNYX MobileO+O2OaleOangcc
OASYSObaboxOberObiOCEANICOdotpadOdys
OilskyOINOMok.OkapiOkapiaOkingOKSI
OKWUOlaxOlkyaOlleeOLTOOlympiaOMIX
OndaOneClickOneLernOnePlusOnidaOnixOnkyo
ONNONVOONYX BOOXOokeeOoredooOpelMobileOpenbox
OphoneOPPOOpssonOptomaOrangeOrange PiOrava
OrbicOrbitaOrbsmartOrdissimoOrionOSCALOTTO
OUJIAOukiOukitelOUYAOvermaxOvviöwn
OwwoOX TABOYSINOystersOyyuOzoneHDP-UP
Pacific Research AlliancePackard BellPadproPAGRAERPaladinPalmPanacom
PanasonicPanavoxPanoPanodicPanoramicPantechPAPYRE
Parrot MobilePartner MobilePC SmartPCBOXPCDPCD ArgentinaPEAQ
PelittPendooPentaPentagramPerfeoPhicommPhilco
PhilipsPhonemaxphoneOnePicoPINEPioneerPioneer Computers
PiPOPIRANHAPixelaPixelphonePIXPROPixusPlanet Computers
PlatoonPlay NowPLDTPloyerPlumPlusStylePluzz
PocketBookPOCOPoint MobilePoint of ViewPolarPolarLinePolaroid
PolestarPolyPadPolytronPompPoppoxPOPTELPorsche
PortfolioPositivoPositivo BGHPPDSPPTVPremierPremio
PrestigioPRIMEPrimepadPrimuxPRISM+PritomPrixton
PROFiLOProlinePrologyProScanPROSONICProtrulyProVision
PULIDPunosPurismPVBoxQ-BoxQ-TouchQ.Bell
QFXQiliveQINQiuwokyQLinkQMobileQnet Mobile
QTECHQtekQuantumQuatroQuboQuechuaQuest
QuipusQumoQupiQwareQWATTR-TVR3Di
RakutenRamosRaspberryRavozRaylandzRazerRAZZ
RCA TabletsRCTReachReadboyRealixRealmeRED
RED-XRedbeanRedfoxRedLineRedwayReederREGAL
RelNATRelndooRemdunRenovaRENSOrephoneRetroid Pocket
RevoRevomovilRhinoRicohRikomagicRIMRinging Bells
RinnoRitmixRitzvivaRivieraRivoRizzenROADMAX
RoadroverRoam CatROCHRocketROiKRokitRoku
RombicaRomsatRoss&MoorRoverRoverPadRoyoleRoyQueen
RT ProjectRTKRugGearRuggeTechRuggexRuioRunbo
RupaRyteS-ColorS-TELLS2TelSabaSafaricom
SagemSagemcomSaietSAILFSaloraSamboxSamsung
SamtechSamtronSaneiSankeySansuiSantinSANY
SanyoSavioSberSCHAUB LORENZSchneiderSchokSCHONTECH
ScooleScosmosSeatelSEBBESeekenSEEWOSEG
SegaSEHMAXSeleclineSelengaSelevisionSelfixSEMP TCL
SencorSencromSendoSenkatelSENNASenseitSenwa
SERVOSeuicSewooSFRSGINShanlingSharp
Shift PhonesShivakiShtrikh-MShuttleSicoSiemensSigma
SilelisSilent CircleSilva SchneiderSimbanssimferSimplySINGER
SingtechSiragonSirin LabsSiswooSK BroadbandSKGSKK Mobile
SkySkylineSkyStreamSkytechSkyworthSmadlSmailo
SmartSmart ElectronicSmart KasselSmart TechSmartabSmartBookSMARTEC
SmartexSmartfrenSmartisanSmartySmooth MobileSmotreshkaSMT Telecom
SMUXSNAMISobieTechSodaSoftbankSoho StyleSolas
SOLESOLOSoloneSonimSONOSSonySony Ericsson
SOSHSoulLinkSoundmaxSOWLYSoyesSparkSparx
SPCSpectralinkSpectrumSpiceSpiderSprintSPURT
SQOOLSSKYStarStar-LightStarlightStarmobileStarway
StarwindSTF MobileSTG TelecomStilevsSTKStonexStorex
StrawBerryStreamSTRONGStyloSuborSugarSULPICE TV
SumvisionSunmaxSunmiSunnySunstechSunVanSunvell
SUNWINDSuper GeneralSuperBOXSupermaxSuperSonicSuperTabSuperTV
SupraSupraimSurfansSurgeSuzukiSveonSwipe
SWISSMOBILITYSwisstoneSwitelSWOFYSycoSYHSylvania
SymphonySyroxSystem76T-MobileT96TADAAMTAG Tech
Taiga SystemTakaraTALBERGTaliusTamboTanixTAUBE
TB TouchTCLTCL SCBCTD SystemsTD TechTeachTouchTechnicolor
TechnikaTechniSatTechnopcTECHNOSATTechnoTrendTechPadTechSmart
TechstormTechwoodTeclastTecno MobileTecToyTEENOTeknosa
Tele2TelefunkenTelegoTelenorTeliaTelitTelkom
TellyTelmaTeloSystemsTelpoTemigereevTENPLUSTeracube
TescoTeslaTETCTetratabteXetThLThomson
ThurayaTIANYUTibutaTigersTime2TimoviTIMvision
TinaiTinmoTiPhoneTivaxTiVoTJCTJD
TOKYOTolinoToneTOOGOTookyTop HouseTop-Tech
TopDeviceTOPDONTopelotekTopluxTOPSHOWSTopsionTopway
TorexTORNADOTorqueTOSCIDOToshibaTouch PlusTouchmate
TOXTPSTranspeedTrecfoneTrekStorTreviTriaPlay
TridentTrifoneTrimbleTrioTronsmartTrueTrue Slim
Tsinghua TongfangTTECTTfoneTTK-TVTuCELTUCSONTunisie Telecom
TurboTurbo-XTurboKidsTurboPadTürk TelekomTurkcellTuvio
TV+TVCTwinMOSTWMTwoeTWZTYD
TymesU-MagicU.S. CellularUDUEUGINEUgoos
UhansUhappyUlefoneUmaxUMIDIGIUmiioUnblock Tech
UnidenUnihertzUnimaxUniqcellUniscopeUnistrongUnitech
UNITEDUnited GroupUNIWAUnknownUnnectoUnnion TechnologiesUNNO
UnonuUnoPhoneUnowhyUOOGOUUrovoUTimeUTOK
UTStarcomUZ MobileV-GenV-HOMEV-HOPEv-mobileV7
VAIOVALEVALEMVALTECHVANGUARDVankyoVANWIN
VargoVastkingVAVAVCVDVDVegaVeidoo
VektaVensoVenstarVenturerVEONVericoVerizon
VerneeVerssedVersusVertexVertuVerykoolVesta
VestelVETASVexiaVGO TELViBoxVicturioVIDA
VideoconVideowebViendoViewSonicVIIPOOVIKUSHAVILLAON
VIMOQVinaboxVingaVinsocViosViperVipro
VirzoVision TechnologyVision TouchVisitechVisual LandVitelcomVityaz
ViumeeVivaxVIVIBrightVIVIMAGEVivoVIWAVizio
VizmoVK MobileVKworldVNPT TechnologyVOCALVodacomVodafone
VOGAVölfenVOLIAVOLKANOVollaVoltVonino
VontarVoragoVorcomVorkeVormorVortexVORTEX (RO)
VotoVOXVoxtelVoyoVsmartVsunVUCATIMES
Vue MicroVulcanVVETIMEW&OWAFWainyokWalker
WalthamWaltonWaltterWanmukangWANSAWEWe. by Loewe.
Web TVWebfleetWeChipWecoolWeelikeitWeiimiWeimei
WellcoMWELLINGTONWestern DigitalWestonWestpointWexlerWhite Mobile
WhoopWieppoWigorWikoWildRedWileyfoxWinds
WinkWinmaxWinnovoWinstarWintouchWiseasyWIWA
WizarPosWizzWolderWolfgangWolkiWONDERWonu
WooWortmannWoxterWOZIFANWSX-AGEX-BO
X-MobileX-TIGIX-ViewX.VisionX88X96X96Q
XcellXCOMXcruiserXElectronXGEMXGIMIXgody
XiaoduXiaolajiaoXiaomiXionXoloXoroXPPen
XREALXshitouXsmartXtouchXtratechXwaveXY Auto
YandexYarvikYASINYELLYOUTHYEPENYesYestel
YezzYoka TVYoozYotaYOTOPTYouinYouwei
YtoneYuYU FlyYuandaoYUHOYUMKEMYUNDOO
YunoYunSongYusunYxtelZ-KaiZaithZamolxe
ZatecZealotZeblazeZebraZeekerZeemiZen
ZenekZentalityZfinerZH&KZidooZIFFLERZIFRO
ZigoZIKZinoxZioxZondaZonkoZoom
ZoomSmartZopoZTEZuumZyncZYQZyrex
ZZB

[top]

Support device types:
typeid
desktop0
smartphone1
tablet2
feature phone3
console4
tv5
car browser6
smart display7
camera8
portable media player9
phablet10
smart speaker11
wearable12
peripheral13
Support detect browsers list (679):
Show details
BrowserBrowserBrowserBrowserBrowserBrowserBrowser
115 Browser18+ Privacy Browser1DM Browser1DM+ Browser2345 Browser360 Phone Browser360 Secure Browser
7654 Browser7StarABrowseAcoo BrowserAdBlock BrowserAdult BrowserAi Browser
Airfind Secure BrowserAloha BrowserAloha Browser LiteAltiBrowserALVAAmayaAmaze Browser
AmerigoAmiga AwebAmiga VoyagerAmigoAndroid BrowserAnka BrowserANT Fresco
ANTGalioAOL DesktopAOL ExplorerAOL ShieldAOL Shield ProAplixAPN Browser
AppBrowzerAppTec Secure BrowserAPUS BrowserArachneArc SearchArctic FoxArmorfly Browser
AroraArvinAsk.comAsus BrowserAtlasAtomAtomic Web Browser
Avant BrowserAvast Secure BrowserAVG Secure BrowserAvira Secure BrowserAwesomiumAwoXAzka Browser
B-LineBaidu BrowserBaidu SparkBangBangla BrowserBasic Web BrowserBasilisk
Beaker BrowserBeamriseBelva BrowserBeonexBerry BrowserBeyond Private BrowserBF Browser
Bitchute BrowserBiyubiBizBrowserBlack Lion BrowserBlackBerry BrowserBlackHawkBloket
Blue BrowserBluefyBonsaiBorealis NavigatorBraveBriskBardBroKeep Browser
BrowlserBrowsBitBrowseHereBrowser Hup ProBrowser MiniBrowseXBrowspeed Browser
BrowzarBunjallooBXE BrowserByffoxCake BrowserCaminoCatalyst
CatsxpCave BrowserCCleanerCentauryCG BrowserChanjetCloudCharon
ChedotCheetah BrowserCherry BrowserCheshireChim LacChowboChrome
Chrome FrameChrome MobileChrome Mobile iOSChrome WebviewChromePlusChromiumChromium GOST
ClassillaCliqzCM BrowserCM MiniCoastCoc CocColibri
Colom BrowserColumbus BrowserCometBirdComfort BrowserComodo DragonConkerorCoolBrowser
CoolNovoCornowserCOS BrowserCraving ExplorerCrazy BrowserCromiteCrow Browser
CrustaCunaguaroCyberfoxCyBrowserDark BrowserDark WebDark Web Browser
Dark Web PrivatedbrowserDebuggable BrowserDecentrDeepnet Explorerdeg-deganDeledao
Delta BrowserDesi BrowserDeskBrowseDezorDiigo BrowserDilloDoCoMo
DolphinDolphin ZeroDoobleDoradoDot BrowserDragon BrowserDUC Browser
DuckDuckGo Privacy BrowserEast BrowserEasy BrowserEcosiaEdge WebViewEinkBroElement Browser
Elements BrowserElinksEolieEpicEspial TV BrowserEudoraWebEUI Browser
Every BrowserExplore BrowsereZ BrowserFalkonFast Browser UC LiteFast ExplorerFaux Browser
FennecfGetFiery BrowserFire BrowserFirebirdFirefoxFirefox Focus
Firefox KlarFirefox MobileFirefox Mobile iOSFirefox RealityFirefox RocketFirewebFireweb Navigator
Flash BrowserFlastFloat BrowserFlockFloorpFlowFlow Browser
FluidFlyperlinkFOSS BrowserFreedom BrowserFreeUFrostFrost+
FulldiveG BrowserGaleonGener8Ghostery Privacy BrowserGinxDroid BrowserGlass Browser
GNOME WebGO BrowserGoBrowserGodzilla BrowserGOG GalaxyGoKuGood Browser
Google EarthGoogle Earth ProGreenBrowserHabit BrowserHalo BrowserHarman BrowserHasBrowser
Hawk Quick BrowserHawk Turbo BrowserHeadless ChromeHelioHerond BrowserHexa Web BrowserHi Browser
hola! BrowserHolla Web BrowserHONOR BrowserHotBrowserHotJavaHTC BrowserHuawei Browser
Huawei Browser MobileHUB BrowserIBrowseiBrowseriBrowser MiniiCabiCab Mobile
IceCatIceDragonIceweaseliDesktop PC BrowserIE Browser FastIE MobileImpervious Browser
InBrowserIncognito BrowserIndian UC Mini BrowseriNet BrowserInspect BrowserInsta BrowserInternet Browser Secure
Internet ExplorerInternet WebbrowserIntune Managed BrowserInvolta GoIridiumIronIron Mobile
IsiviooIVVI BrowserJapan BrowserJasmineJavaFXJellyJig Browser
Jig Browser PlusJioSphereJUZI BrowserK-meleonK-NinjaK.BrowserKapiko
KazehakaseKeepsafe BrowserKeepSolid BrowserKeyboard BrowserKids Safe BrowserKindle BrowserKinza
KittKiwiKode BrowserKonquerorKUNKUTO Mini BrowserKylo
LadybirdLagatos BrowserLark BrowserLegan BrowserLenovo BrowserLexi BrowserLG Browser
LieBaoFastLightLightning BrowserLightning Browser PlusLiloLinksLiri Browser
LogicUI TV BrowserLolifoxLotusLovense BrowserLT BrowserLuaKitLUJO TV Browser
LulumiLunascapeLunascape LiteLynket BrowserLynxMaelstromMandarin
MapleMarsLab Web BrowserMAUI WAP BrowserMaxBrowserMaxthonMaxTube BrowsermCent
Me BrowserMeizu BrowserMercuryMi BrowserMicroBMicrosoft EdgeMidori
Midori LiteMinimoMint BrowserMisesMixerBox AIMMBOX XBrowserMmx Browser
MobicipMobile SafariMobile SilkMogok BrowserMonument BrowserMotorola Internet BrowserMxNitro
MypalNaenara BrowserNaked BrowserNaked Browser ProNavigateur WebNCSA MosaicNetFront
NetFront LifeNetPositiveNetscapeNetSurfNextWord BrowserNFS BrowserNinesky
NinetailsNokia BrowserNokia OSS BrowserNokia Ovi BrowserNOMone VR BrowserNOOK BrowserNorton Private Browser
Nova Video Downloader ProNox BrowserNTENT BrowserNuanti MetaNuviuObigoOcean Browser
OceanHeroOculus BrowserOdd BrowserOdinOdin BrowserOdyssey Web BrowserOff By One
Office BrowserOH BrowserOH Private BrowserOhHai BrowserOJR BrowserOmniWebOnBrowser Lite
ONE BrowserOnion BrowserONIONBrowserOpen BrowserOpen Browser 4UOpen Browser fast 5GOpen Browser Lite
Open TV BrowserOpenFinOpenwave Mobile BrowserOperaOpera CryptoOpera DevicesOpera GX
Opera MiniOpera Mini iOSOpera MobileOpera NeonOpera NextOpera TouchOppo Browser
Opus BrowserOrbitumOrcaOrdissimoOreganoOrigin In-Game OverlayOrigyn Web Browser
OrNET BrowserOtter BrowserOwl BrowserPale MoonPalm BlazerPalm PrePalm WebPro
PalmscapePawxyPeach BrowserPeeps dBrowserPerfect BrowserPerkPhantom Browser
Phantom.mePhoenixPhoenix BrowserPhotonPi BrowserPICO BrowserPintar Browser
PirateBrowserPlayFree BrowserPlumaPocket Internet ExplorerPocketBook BrowserPolarisPolarity
PolyBrowserPolypanePresearchPrismPrivacy BrowserPrivacy Explorer Fast SafePrivacy Pioneer Browser
PrivacyWallPrivate Internet BrowserPronHub BrowserProxy BrowserProxyFoxProxyiumProxyMax
ProxynetPSI Secure BrowserPuffin Cloud BrowserPuffin Incognito BrowserPuffin Secure BrowserPuffin Web BrowserPure Lite Browser
Pure Mini BrowserQazwebQiyuQJY TV BrowserQmamuQQ BrowserQQ Browser Lite
QQ Browser MiniQtWebQtWebEngineQuarkQuick BrowserQuick Search TVQupZilla
QutebrowserQwant MobileRabbit Private BrowserRaise Fast BrowserRakuten BrowserRakuten Web SearchRaspbian Chromium
RCA Tor ExplorerRealme BrowserRekonqReqwireless WebViewerRoccatRockMeltRoku Browser
SafariSafari Technology PreviewSafe Exam BrowserSailfish BrowserSalamWebSamsung BrowserSamsung Browser Lite
Savannah BrowserSavySodaSberBrowserSecure BrowserSecure Private BrowserSecureXSeewo Browser
SEMC-BrowserSeraphic SrafSeznam BrowserSFiveSharkee BrowserShiiraSidekick
SilverMob USSimpleBrowserSingleboxSiteKioskSizzySkyeSkyfire
SkyLeapSleipnirSlimBoatSlimjetSmart BrowserSmart Lenovo BrowserSmart Search & Web Browser
SmoozSnowshoeSogou ExplorerSogou Mobile BrowserSony Small BrowserSOTI SurfSoul Browser
Soundy BrowserSP BrowserSparkSpectre BrowserSplashSputnik BrowserStampy Browser
StargonSTART Internet BrowserStealth BrowserSteam In-Game OverlayStreamySunflower BrowserSunrise
Super Fast BrowserSuperBirdSuperFast BrowsersurfSurf BrowserSurfy BrowserSushi Browser
Sweet BrowserSwiftfoxSwiftweaselSX BrowserT-Browsert-online.de BrowserT+Browser
TalkToTao BrowsertarariaTenFourFoxTenta BrowserTesla BrowserThor
Tint BrowserTizen BrowserToGateTor BrowserTotal BrowserTQ BrowserTrueLocation Browser
TUC Mini BrowserTungstenTUSKTV BroTV-Browser InternetTweakStyleU Browser
UBrowserUC BrowserUC Browser HDUC Browser MiniUC Browser TurboUi Browser MiniUme Browser
UPhone BrowserUR BrowserUzblVast BrowservBrowserVD BrowserVeera
Vegas BrowserVenus BrowserVertex SurfVewd BrowserViaViasat BrowserVibeMate
Vision Mobile BrowserVivaldiVivid Browser Minivivo BrowserVMS MosaicVMware AirWatchVonkeror
Vuhuvw3mWaterfoxWave BrowserWaveboxWear Internet BrowserWeb Browser & Explorer
Web ExplorerWebDiscoverWebian ShellWebPositiveWeltweitimnetz BrowserWeTab BrowserWexond
Whale BrowserWhale TV BrowserWolvicWorld BrowserwOSBrowserWukong BrowserWyzo
X Browser LiteX-VPNxBrowserXBrowser MinixBrowser Pro Super FastXiinoXnBrowse
XNX BrowserXooloo InternetxStandXtremeCastXvastYaani BrowserYAGI
Yahoo! Japan BrowserYandex BrowserYandex Browser CorpYandex Browser LiteYo BrowserYolo BrowserYouBrowser
YouCareYuzu BrowserZetakeyZirco BrowserZordo BrowserZTE BrowserZvu

[top]

Keywords

device-detector

FAQs

Package last updated on 21 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts