1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 14:20:45 +00:00
lancedikson_bowser/README.md

154 lines
4.6 KiB
Markdown
Raw Normal View History

2014-03-01 18:22:06 +00:00
## Bowser
2011-04-27 23:25:55 +00:00
A Browser detector. Because sometimes, there is no other way, and not even good modern browsers always provide good feature detection mechanisms.
2011-04-27 22:14:35 +00:00
2014-02-22 21:34:00 +00:00
[![bowser ci](https://secure.travis-ci.org/ded/bowser.png)](https://travis-ci.org/ded/bowser/)
2011-04-27 23:25:55 +00:00
So... it works like this:
2011-04-27 22:14:35 +00:00
``` js
if (bowser.msie && bowser.version <= 6) {
alert('Hello China');
}
```
2011-04-27 22:14:35 +00:00
2016-05-06 18:29:22 +00:00
## 1.1.0 breaking changes
We don't save built script in the repo anymore. The main file (`src/bowser.js`) is available through NPM or Bower.
Also you can download minified file from [the release page](https://github.com/ded/bowser/releases).
## 1.0.0 breaking changes
`browser = require('bowser').browser;` becomes `browser = require('bowser');`
2015-11-06 17:52:11 +00:00
## Bowser Flags
Your mileage may vary, but these flags should be set. See Contributing below.
2011-04-27 22:14:35 +00:00
2015-11-06 17:52:11 +00:00
``` js
alert('Hello ' + bowser.name + ' ' + bowser.version);
```
### All detected browsers
These flags are set for all detected browsers:
* `name` - A human readable name for this browser. E.g. 'Chrome', ''
* `version` - Version number for the browser. E.g. '32.0'
2015-11-06 17:58:50 +00:00
For unknown browsers, Bowser makes a best guess from the UA string. So, these may not be set.
2015-11-06 17:52:11 +00:00
### Rendering engine flags
2015-11-06 17:52:11 +00:00
If detected, one of these flags may be set to true:
2016-05-09 07:24:55 +00:00
* `webkit` - Chrome 0-27, Android <4.4, iOs, BB, etc.
* `blink` - Chrome >=28, Android >=4.4, Opera, etc.
2015-11-06 17:52:11 +00:00
* `gecko` - Firefox, etc.
* `msie` - IE <= 11
* `msedge` - IE > 11
Safari, Chrome and some other minor browsers will report that they have `webkit` engines.
Firefox and Seamonkey will report that they have `gecko` engines.
``` js
if (bowser.webkit) {
// do stuff with safari & chrome & opera & android & blackberry & webos & silk
}
```
### Device flags
If detected, one of these flags may be set to true:
* `mobile` - All detected mobile OSes are additionally flagged `mobile`, **unless it's a tablet**
2015-11-06 17:58:50 +00:00
* `tablet` - If a tablet device is detected, the flag `tablet` is **set instead of `mobile`**.
2015-11-06 17:52:11 +00:00
2015-11-06 17:58:50 +00:00
### Browser flags
If detected, one of these flags may be set to true. The rendering engine flag is shown in []'s:
2015-11-06 17:52:11 +00:00
2016-05-09 07:24:55 +00:00
* `chrome` - [`webkit`|`blink`]
2015-11-06 17:52:11 +00:00
* `firefox` - [`gecko`]
* `msie`
2015-05-16 01:02:18 +00:00
* `msedge`
2015-11-06 17:52:11 +00:00
* `safari` - [`webkit`]
2016-05-09 07:24:55 +00:00
* `android` - native browser - [`webkit`|`blink`]
2015-11-06 17:58:50 +00:00
* `ios` - native browser - [`webkit`]
2016-05-09 07:24:55 +00:00
* `opera` - [`blink` if >=15]
2015-11-06 17:52:11 +00:00
* `phantom` - [`webkit`]
2015-11-06 17:58:50 +00:00
* `blackberry` - native browser - [`webkit`]
* `webos` - native browser - [`webkit`]
* `silk` - Amazon Kindle browser - [`webkit`]
2015-11-06 17:52:11 +00:00
* `bada` - [`webkit`]
* `tizen` - [`webkit`]
* `seamonkey` - [`gecko`]
* `sailfish` - [`gecko`]
* `ucbrowser` — [`webkit`]
* `qupzilla` — [`webkit`]
2016-05-09 07:24:55 +00:00
* `vivaldi` — [`blink`]
2016-05-09 07:18:11 +00:00
* `sleipnir` — [`blink`]
* `kMeleon` — [`gecko`]
For all detected browsers the browser version is set in the `version` field.
2015-11-06 17:52:11 +00:00
### OS Flags
If detected, one of these flags may be set to true:
2014-02-21 14:09:58 +00:00
* `mac`
2015-11-06 17:52:11 +00:00
* `windows` - other than Windows Phone
* `windowsphone`
* `linux` - other than `android`, `chromeos`, `webos`, `tizen`, and `sailfish`
* `chromeos`
* `android`
2015-11-06 17:52:11 +00:00
* `ios` - also sets one of `iphone`/`ipad`/`ipod`
* `blackberry`
* `firefoxos`
2015-11-06 17:52:11 +00:00
* `webos` - may also set `touchpad`
* `bada`
* `tizen`
* `sailfish`
2014-02-21 14:09:58 +00:00
2015-11-06 17:52:11 +00:00
`osversion` may also be set:
2014-02-21 14:09:58 +00:00
2015-11-06 17:52:11 +00:00
* `osversion` - for Android, iOS, Windows Phone, WebOS, Bada, and Tizen. If included in UA string.
2011-04-27 22:14:35 +00:00
2015-11-06 17:52:11 +00:00
iOS is always reported as `ios` and additionally as `iphone`/`ipad`/`ipod`, whichever one matches best.
If WebOS device is an HP TouchPad the flag `touchpad` is additionally set.
2011-04-27 22:14:35 +00:00
2015-11-06 17:52:11 +00:00
### Browser capability grading
2015-11-06 17:58:50 +00:00
One of these flags may be set:
2015-11-06 17:52:11 +00:00
* `a` - This browser has full capabilities
* `c` - This browser has degraded capabilities. Serve simpler version
* `x` - This browser has minimal capabilities and is probably not well detected.
2015-11-06 17:58:50 +00:00
There is no `b`. For unknown browsers, none of these flags may be set.
2011-04-27 22:14:35 +00:00
2014-03-01 18:22:06 +00:00
### Ender Support
2011-04-27 22:14:35 +00:00
2014-03-01 18:22:06 +00:00
`package.json`
2011-04-27 22:14:35 +00:00
2014-03-01 18:22:06 +00:00
``` json
"dependencies": {
"bowser": "x.x.x"
}
```
2011-04-27 22:14:35 +00:00
``` js
2014-03-01 18:22:06 +00:00
if (require('bowser').chrome) {
alert('Hello Silicon Valley')
}
```
2014-03-01 18:22:06 +00:00
### 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):
2013-12-13 12:17:10 +00:00
2014-03-01 18:22:06 +00:00
``` sh
$ npm install
$ make test
```
2013-12-13 12:17:10 +00:00
2014-03-01 18:22:06 +00:00
Please do not check-in the built files `bowser.js` and `bowser.min.js` in pull requests.
2013-12-13 12:17:10 +00:00
2014-03-01 18:22:06 +00:00
### Adding tests
See the list in `src/useragents.js` with example user agents and their expected bowser object.
2013-12-13 12:17:10 +00:00
Whenever you add support for new browsers or notice a bug / mismatch, please update the list and
check if all tests are still passing.
2015-07-26 01:55:21 +00:00
### License
Licensed as MIT. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.