user-agent-parse

0.1.12 • Public • Published

Node User Agent Parse

Very simple, no deps user agent string parser.

NPM Build Status

Overview

Parse user agents a bit like PHP's get_browser(). Rudimentary but it works.

Example Usage

const userAgent = require('user-agent');
userAgent.parse('Mozilla/5.0 (Windows; U; Windows NT 5.1; en) AppleWebKit/526.9 (KHTML, like Gecko) Version/4.0dp1 Safari/526.8');
// => { name: 'safari', version: '4.0dp1', os: 'Windows XP', full: '... same string as above ...', device_type:'desktop' }

Tests

See /test/test.js for a simple suite

Credits

Heavily based on (blatantly ripped from ahem) https://github.com/soldair/node-ua-device-type and https://github.com/jujhars13/node-user-agent-parse

License

License is MIT, go nuts.

Package Sidebar

Install

npm i user-agent-parse

Weekly Downloads

234

Version

0.1.12

License

MIT

Unpacked Size

10.7 kB

Total Files

8

Last publish

Collaborators

  • jujhars13