All Projects β†’ yankouskia β†’ Get Browser

yankouskia / Get Browser

Licence: mit
πŸ’» Lightweight tool to identify the browser (mobile+desktop detection)πŸ“±

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Get Browser

Sup
A curses threads-with-tags style email client (mailing list: [emailΒ protected])
Stars: ✭ 780 (+1850%)
Mutual labels:  lightweight
Broken
Lightweight Unit Testing for C++
Stars: ✭ 8 (-80%)
Mutual labels:  lightweight
Onloaded
A tiny (350B) library to detect when images have loaded.
Stars: ✭ 33 (-17.5%)
Mutual labels:  lightweight
Utox
Β΅Tox the lightest and fluffiest Tox client
Stars: ✭ 820 (+1950%)
Mutual labels:  lightweight
Cross
Cross++ Lightweight Crossplatform Game Engine
Stars: ✭ 26 (-35%)
Mutual labels:  lightweight
Ostrio Analytics
πŸ“Š Visitor's analytics tracking code for ostr.io service
Stars: ✭ 9 (-77.5%)
Mutual labels:  lightweight
Uplot
πŸ“ˆ A small, fast chart for time series, lines, areas, ohlc & bars
Stars: ✭ 6,808 (+16920%)
Mutual labels:  lightweight
Dom99
Extend html with directives
Stars: ✭ 37 (-7.5%)
Mutual labels:  lightweight
Librg
πŸš€ Making multi-player gamedev simpler since 2017
Stars: ✭ 813 (+1932.5%)
Mutual labels:  lightweight
Lightweight Human Pose Estimation.pytorch
Fast and accurate human pose estimation in PyTorch. Contains implementation of "Real-time 2D Multi-Person Pose Estimation on CPU: Lightweight OpenPose" paper.
Stars: ✭ 958 (+2295%)
Mutual labels:  lightweight
Sydes
Lightweight CMF for a simple sites with sqlite database
Stars: ✭ 6 (-85%)
Mutual labels:  lightweight
Lightcomm4j
Yet another lightweight asynchronous network library for java
Stars: ✭ 25 (-37.5%)
Mutual labels:  lightweight
Humblelogging
HumbleLogging is a lightweight C++ logging framework. It aims to be extendible, easy to understand and as fast as possible.
Stars: ✭ 15 (-62.5%)
Mutual labels:  lightweight
Splide
Splide is a lightweight, powerful and flexible slider and carousel, written in pure JavaScript without any dependencies.
Stars: ✭ 786 (+1865%)
Mutual labels:  lightweight
Asynchronize
A declarative syntax for creating asynchronous methods.
Stars: ✭ 35 (-12.5%)
Mutual labels:  lightweight
Easy Php
A Faster Lightweight Full-Stack PHP Framework πŸš€
Stars: ✭ 754 (+1785%)
Mutual labels:  lightweight
Cicada
πŸš€ Fast lightweight HTTP service framework.
Stars: ✭ 851 (+2027.5%)
Mutual labels:  lightweight
Katwebx
An extremely fast static web server and reverse proxy for the modern web.
Stars: ✭ 39 (-2.5%)
Mutual labels:  lightweight
Picobox
Dependency injection framework designed with Python in mind.
Stars: ✭ 35 (-12.5%)
Mutual labels:  lightweight
Tcodeedit
Lightweight and syntax hilighted UNICODE editor
Stars: ✭ 27 (-32.5%)
Mutual labels:  lightweight

PRs Welcome GitHub license

NPM

get-browser

πŸ’» Lightweight tool to identify the browser (with mobile/desktop detection) πŸ“±

IE Internet Explorer Edge Microsoft Edge FirefoxFirefox Dev Mozilla Firefox ChromeChrome DevChrome Canary Google Chrome OperaOpera Dev Opera SafariSafari TPSafari iOS Safari Android WebView Android WebView
7+ 12+ 5+ 31+ 18+ 6+ 20+

Demo

DEMO can be found here

Desktop Chrome Mobile Safari

Motivation

Lightweight tool for easy way to identify the browser. User Agent does not always provide entire information about the browser. Additional checks are used.

How to use

To install library:

# yarn
yarn add get-browser

# npm
npm install get-browser --save

Library is designed to identify browser and device type (mobile / desktop)

// ES6 modules
import {
  browsers,
  detect,
  isMobile,

  isAndroid,
  isChrome,
  isEdge,
  isFirefox,
  isIE,
  isOpera,
  isSafari,
} from 'get-browser';

// CommonJS modules
const {
  browsers,
  detect,
  isMobile,

  isAndroid,
  isChrome,
  isEdge,
  isFirefox,
  isIE,
  isOpera,
  isSafari,
} = require('get-browser');

// Enumeration with all supported browsers is provided:
console.log(browsers);
/*
{
  ANDROID: 'android',
  CHROME: 'chrome',
  EDGE: 'edge',
  FIREFOX: 'firefox',
  IE: 'ie',
  OPERA: 'opera',
  SAFARI: 'safari',
  UNKNOWN: 'unknown',
}
*/

// To detect browser:
const browser = detect(); // one from the browsers list will be displayed

// To detect whether mobile device is used:
const isMobileDevice = isMobile();

// To detect whether user is in Firefox browser:
const isFirefoxBrowser = isFirefox();

API

browsers

Exposed enumeration for providing constant for each browser.

detect(): string<oneof browsers>

Returns the browser name

isMobile(): boolean

Returns true if mobile device is being used

isAndroid(): boolean

Return true if Android browser us being used

isChrome(): boolean

Return true if Google Chrome browser us being used

isEdge(): boolean

Return true if Edge browser us being used

isFirefox(): boolean

Return true if Firefox browser us being used

isIE(): boolean

Return true if Internet Explorer browser us being used

isOpera(): boolean

Return true if Opera browser us being used

isSafari(): boolean

Return true if Safari browser us being used

Contributing

get-browser is open-source library, opened for contributions

License

get-browser is MIT licensed

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].