1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00
Go to file
2018-07-08 12:48:54 +03:00
docs Fix docs 2018-07-08 12:31:23 +03:00
src Fix docs 2018-07-08 12:31:23 +03:00
test Rewrite Parser.satisfies and fix some related methods 2018-07-08 12:08:49 +03:00
.babelrc Fix nyc misconfiguration 2018-06-30 19:21:09 +03:00
.coveralls.yml Add coveralls.yml 2018-06-30 17:29:34 +03:00
.editorconfig add .md to editorconfig 2016-04-16 18:49:21 +03:00
.eslintignore Add eslint support 2017-12-20 23:29:06 +02:00
.eslintrc.yml Add eslint support 2017-12-20 23:29:06 +02:00
.gitignore Ignore coverage folder 2018-06-30 18:44:45 +03:00
.npmignore Ignore coverage folder 2018-06-30 18:44:45 +03:00
.nycrc Fix nyc misconfiguration 2018-06-30 19:21:09 +03:00
.testem.json Add testem as a main test runner 2017-06-08 22:23:27 +03:00
.travis.yml Add coveralls integration 2018-06-30 17:35:12 +03:00
bower.json Update authors and homepage 2017-05-18 21:54:03 +03:00
CHANGELOG.md Write changelog 2017-05-18 21:55:49 +03:00
ISSUE_TEMPLATE.md Fix templates and repo meta information 2018-07-05 10:07:22 +03:00
jsdoc.json Rebuild documentation 2018-07-08 12:09:27 +03:00
LICENSE adds license 2015-07-25 18:56:12 -07:00
package-lock.json Add a bit of docs 2018-07-05 22:44:43 +03:00
package.json Add a bit of docs 2018-07-05 22:44:43 +03:00
README.md Update README.md 2018-07-08 12:45:33 +03:00
typings.d.ts Remove old typings.d.ts 2018-07-08 12:48:54 +03:00

Bowser

A Browser detector. Because sometimes, there is no other way, and not even good modern browsers always provide good feature detection mechanisms.

bowser ci

Contents

Overview

The library is made to help to detect what browser your user has and gives you a convenient API to filter the users somehow depending on their browsers.

Use cases

First of all, require the library:

const bowser = require('bowser');

Browser props detection

Often we need to pick users' browser properties such as the name, the version, the rendering engine and so on. Here is an example how to make it with Bowser:

const browser = bowser.getParser(window.navigator.userAgent);

console.log(`The current browser name is "${browser.getBrowserName()}"`);
// The current browser name is "Internet Explorer"

or

const impression = new Impression();

const browser = bowser.getParser(window.navigator.userAgent);
const browserInfo = browser.getBrowser();
impression.brName = browserInfo.name;
impression.brVer = browserInfo.version;

or

const browser = bowser.getParser(window.navigator.userAgent);
impression.userTechData = browser.parse();
console.log(impression.userTechData);
// outputs
{
  browser: {
    name: "Internet Explorer"
    version: "11.0"
  },
  os: {
    name: "Windows"
    version: "NT 6.3"
    versionName: "8.1"
  },
  platform: {
    type: "desktop"
  },
  engine: {
    name: "Trident"
    version: "7.0"
  }
}

Filtering browsers

You could want to filter some particular browsers to provide any special support for them or make any workarounds. It could look like this:

const browser = bowser.getParsers(window.navigator.userAgent);
const isValidBrowser = browser.satisfies({
  // declare browsers per OS
  windows: {
    "internet explorer": ">10",
  },
  macos: {
    safari: ">10.1"
  },

  // per platform (mobile, desktop or tablet)
  mobile: {
    safari: '>9',
    'android browser': '>3.10'
  },

  // or in general
  chrome: ">20.1.1432",
  firefox: ">31",
  opera: ">22"
});

Settings for any particular OS or platform has more priority and redefines settings of standalone browsers. Thus, you can define OS or platform specific rules and they will have more priority in the end.

More of API and possibilities you will find in the docs folder.

Contributing

If you'd like to contribute a change to bowser, modify the files in src/, then run the following (you'll need node + npm installed):

$ npm install
$ npm test

Adding tests

See the list in test/acceptance/useragentstrings.yml with example user agents and their expected bowser object.

Whenever you add support for new browsers or notice a bug / mismatch, please update the list and check if all tests are still passing.

Similar Projects

  • Kong - A C# port of Bowser.

License

Licensed as MIT. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.