
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
get-browser
Advanced tools
💻 Lightweight tool to identify the browser (with mobile/desktop detection) 📱
![]() Internet Explorer | ![]() Microsoft Edge | ![]() ![]() Mozilla Firefox | ![]() ![]() ![]() Google Chrome | ![]() ![]() Opera | ![]() ![]() ![]() Safari | ![]() Android WebView |
|---|---|---|---|---|---|---|
| 7+ | 12+ | 5+ | 31+ | 18+ | 6+ | 20+ |
| Desktop Chrome | Mobile Safari |
|---|---|
![]() | ![]() |
Lightweight tool for easy way to identify the browser. User Agent does not always provide entire information about the browser. Additional checks are used.
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();
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
get-browser is open-source library, opened for contributions
get-browser is MIT licensed
FAQs
Lightweight tool to identify the browser
The npm package get-browser receives a total of 143 weekly downloads. As such, get-browser popularity was classified as not popular.
We found that get-browser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.