Socket
Socket
Sign inDemoInstall

ua-device-detector-wp

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ua-device-detector-wp

Parses user-agent to set css classes or directly usable via JS / NodeJS. (webpack friendly)


Version published
Weekly downloads
2
Maintainers
1
Install size
82.3 kB
Created
Weekly downloads
 

Changelog

Source

1.1.0 (2018-02-17)

Bug Fixes

  • travis: trying older Node Ver. (a0bbee3)
  • closes #4 (200f635)

Features

  • CI-CD: added standard-version + travis npm deploy (4d87650)

Readme

Source

#ua-device-detector

Build Status

Install

$ bower i ua-device-detector -S

Server-Side Usage

var uaDeviceDetector=require('ua-device-detector');
.
.
.
var deviceInfo=uaDeviceDetector.parseUserAgent(options);

Client-Side Usage

Add script load to HTML:

<script type="text/javascript" src=".../re-tree.js"></script>
<script type="text/javascript" src=".../ua-device-detector.js"></script>

Then use in your javascript:

var deviceInfo=window.uaDeviceDetector.parseUserAgent(options);

To use from angular:

Don't - Instead use ng-device-detector :)

API

parseUserAgent options specification:

  • userAgent: (string, required) user agent string to parse
  • customDetectors: ([object], optional) array of custom detectors:
    • name: (string, required) name of detector as it will appear in deviceInfo
    • re: (string|regex|reTree expression, required) the expression to use for detecting

parseUserAgent returns a deviceInfo object:

  • raw
    • userAgent (string) - raw user agent
    • os (object) - true/false detections per os
    • browser (object) - true/false detections per browser
    • device (object) - true/false detections per device
  • os (string) - detected os
  • browser (string) - detected browser
  • device (string) - detected device
  • os_version (string) - detected os version
  • browser_version (string) - detected browser version
  • isMobile() - returns true if device is mobile. false otherwise
  • isTablet() - returns true if device is tablet. false otherwise
  • isDesktop() - returns true if device is desktop. false otherwise
  • custom (object) - true/false result of detection per custom detector

Support

Pull-requests with new stuff will be highly appreciated :)

Please remember to add tests when making changes.

License

MIT License

Keywords

FAQs

Last updated on 27 Dec 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc