
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
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
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.