Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mobile-detect

hgoebl1mMIT1.4.5TypeScript support: included

Device detection (phone, tablet, desktop, mobile grade, os, versions)

useragent, mobile, phone, tablet, detect, device, browser, version, mobilegrade, sniff

readme

mobile-detect.js

A loose port of Mobile-Detect to JavaScript.

This script will detect the device by comparing patterns against a given User-Agent string. You can find out information about the device rendering your web page:

  • mobile or not
  • if mobile, whether phone or tablet
  • operating system
  • Mobile Grade (A, B, C) REMARK: this is completely outdated: all current devices will return an 'A', so it's useless nowadays
  • specific versions (e.g. WebKit)

Current master branch is using detection logic from **Mobile-Detect@2.8.37**

Live Demo

Demo/check (sorry about the missing styling) can be found here.

Warning

TL;DR: you should not use this library in your HTML page and it's less reliable when used server-side (Node.js)

As mentioned later, "User-Agent" based detection is not a reliable solution in most cases, because:

  • The rules (regular expressions) are constantly out-dated and incomplete
  • You have to update the detection code continuously
  • There are other ways to detect how your web application should behave:
  • Maybe there are some libraries out there (which are probably not free) doing a more reliable job

If you still want to (or have to) use this library, you should always encapsulate it with your own code, because chances a very high that you have to tweak the behaviour a bit or are not satisfied with the result of mobile-detect.js. Don't spread usage of MobileDetect all over your own code! As you can see in the issues, there are some "bugs", feature-requests, pull-requests where people are not so happy how MobileDetect works. But I cannot change its behaviour from version to version, even if this was reasonable from new users' point of view. I hope you show understanding.

At least there is a way to monkey-patch the library (see "Extending" below).

Usage

Browser

<script src="mobile-detect.js"></script>
<script>
    var md = new MobileDetect(window.navigator.userAgent);
    // ... see below
</script>

Node.js / Express

var MobileDetect = require('mobile-detect'),
    md = new MobileDetect(req.headers['user-agent']);
// ... see below

General

var md = new MobileDetect(
    'Mozilla/5.0 (Linux; U; Android 4.0.3; en-in; SonyEricssonMT11i' +
    ' Build/4.1.A.0.562) AppleWebKit/534.30 (KHTML, like Gecko)' +
    ' Version/4.0 Mobile Safari/534.30');

// more typically we would instantiate with 'window.navigator.userAgent'
// as user-agent; this string literal is only for better understanding

console.log( md.mobile() );          // 'Sony'
console.log( md.phone() );           // 'Sony'
console.log( md.tablet() );          // null
console.log( md.userAgent() );       // 'Safari'
console.log( md.os() );              // 'AndroidOS'
console.log( md.is('iPhone') );      // false
console.log( md.is('bot') );         // false
console.log( md.version('Webkit') );         // 534.3
console.log( md.versionStr('Build') );       // '4.1.A.0.562'
console.log( md.match('playstation|xbox') ); // false

More Info ...

There is some documentation generated by JSDoc:

https://hgoebl.github.io/mobile-detect.js/doc/MobileDetect.html

Side Effects

Script creates the global property MobileDetect.

Modernizr Extension

When using Modernizr, you can include mobile-detect-modernizr.js. It will add the CSS classes mobile, phone, tablet and mobilegradea if applicable.

You can easily extend it, e.g. android, iphone, etc.

Size (bytes)

  • development: 70168
  • minified: 39585
  • minified + gzipped: 16556 (cat mobile-detect.min.js | gzip -9f | wc -c)

Installation

Bower (which you should not use for new projects)

$ bower install hgoebl/mobile-detect.js --save

Node.js / npm

$ npm install mobile-detect --save

CDN - jsDelivr

<script src="https://cdn.jsdelivr.net/npm/mobile-detect@1.4.5/mobile-detect.min.js"></script>

cdnjs - cdnjs.com

<script src="https://cdnjs.cloudflare.com/ajax/libs/mobile-detect/1.4.5/mobile-detect.min.js"></script>

Extending/Modifying Behaviour

Though it is not recommended to rely on internal methods or structures of MobileDetect, you can alter the behaviour by replacing particular internal methods with your own implementations. If you feel like this is the only possibility, then go ahead and have a look at the source code and examples in tests/spec/MobileDetectSpec.js (search for "Extensibility").

Alternatives / Infos

Often device detection is the first solution in your mind. Please consider looking for other solutions like media queries and feature detection (e.g. w/ Modernizr). Maybe there are better (simpler, smaller, faster) device detection libraries, so here you have a list (order has no meaning apart from first element):

Mobile-Usage Statistics

If you have to provide statistics about how many and which mobile devices are hitting your web-site, you can generate statistics (data and views) with hgoebl/mobile-usage. There are many hooks to customize statistical calculation to your needs.

License

MIT-License (see LICENSE file).

Contributing

Your contribution is welcome. If you want new devices to be supported, please contribute to Mobile-Detect instead.

To run generate-script it is necessary to have Mobile-Detect as a sibling directory to mobile-detect.js/. (I tried to use git subtree but had some problems on Mac OS X - probably my fault...)

  • fork or clone serbanghita/Mobile-Detect
  • fork hgoebl/mobile-detect.js
  • run npm install
  • create branch
  • make changes and run grunt (needs PHP >= 5.4 in your path)
  • run browser test (tests/SpecRunner.html)
  • commit, push to your branch
  • create pull request

Testing

Browser

Open tests/SpecRunner.html in different browsers.

Node.js

$ npm test
$ # or
$ grunt jasmine_node

Donations

If you want, you can donate to Mobile-Detect.

TODO

  • Extend RegEx patterns so that test passes
  • support ES6 modules

changelog

v1.4.5: date: 2021-03-13 changes:

- use Mobile-Detect@2.8.37

v1.4.4: date: 2019-09-21 changes:

- use Mobile-Detect@2.8.34

v1.4.3: date: 2018-09-08 changes:

- use Mobile-Detect@2.8.33

v1.4.2: date: 2018-06-10 changes:

- use Mobile-Detect@2.8.32

v1.4.1: date: 2017-12-24 changes:

- use Mobile-Detect@2.8.30

v1.4.0: date: 2017-12-09 changes:

- use Mobile-Detect@2.8.28
- fix #67 (vulnerable to ReDoS)

v1.3.7: date: 2017-09-06 changes:

- use Mobile-Detect@2.8.26

v1.3.6: date: 2017-04-05 changes:

- use Mobile-Detect@2.8.25

v1.3.5: date: 2016-11-14 changes:

- use Mobile-Detect@2.8.24
- fix #46 (typings for TypeScript, thanks to @mgroenhoff)

v1.3.4: date: 2016-11-11 changes:

- use Mobile-Detect@2.8.23
- add typings for TypeScript

v1.3.3: date: 2016-07-31 changes:

- use Mobile-Detect@2.8.22
- update dev dependencies (no impact on code)
- add licence to source
- add runtime version info

v1.3.2: date: 2016-03-31 changes:

- use Mobile-Detect@2.8.20
- exclude tests from npm package
- fix #42 (wrong version number in .min.js)

v1.3.1: date: 2015-12-28 changes:

- use Mobile-Detect@2.8.19

v1.3.0: date: 2015-09-17 changes:

- use Mobile-Detect@2.8.17
- add method 'userAgents()' to handle cases where more than one browser matches
- change method 'is()' to reflect that more than one match is possible for patterns
- fix #34 is('MobileBot') not working
- mitigate #36 ucbrowser detect as safari on android os
- disable failing unit-tests (testing particular device matches)

v1.2.1: date: 2015-07-19 changes:

- use Mobile-Detect@2.8.15

v1.2.0: date: 2015-05-24 changes:

- fix #28 extend fallback pattern for unknown tablets (http://detectmobilebrowsers.com/)

v1.1.0: date: 2015-05-10 changes:

- use Mobile-Detect@2.8.13 (fix #27)
- fix #26 webpack build error

v1.0.1: date: 2015-04-10 changes:

- package.json bugfix (full-qualified url to github-repo)
  This change affects only npm and has no effect on code or Bower.
  Therefor this version isn't published through CDN.

v1.0.0: date: 2015-03-22 changes:

- use Mobile-Detect@2.8.12
- breaking change: phone() and tablet() won't return 'UnknownMobile' -> have to check mobile() as well (issue #20)
- breaking change: fallback detection phone/tablet is now based on smaller screen side (issue #23)
- expose internal implementation in case somebody wants to quick fix or monkey-patch the behaviour

v0.4.3: date: 2014-12-08 changes:

- fix issue #15 (detect crazy Microsoft Mobile OS)
- use Mobile-Detect@2.8.11

v0.4.2: date: 2014-10-21 changes:

- use Mobile-Detect@2.8.5

v0.4.1: date: 2014-10-12 changes:

- fix issue #10 (optimization: no need to eval code before it's not required)
- use Mobile-Detect@2.8.4

v0.4.0: date: 2014-07-15 changes:

- use Mobile-Detect@2.8.3
- add AMD support (thnx to @unclechu)