
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
check-browsers
Advanced tools
It is detect your browser and version(Ineternet Explorer).
It detects only desktop browser not mobile browser.
It helps your page styling for each browser.
It appends class with html root element.
<html class="browser type">
If you known some idea for mobile browser, you could send pull request.
Using CDN:
<script src="//cdn.jsdelivr.net/check-browsers/1.0.4/check-browsers.min.js"></script>
Using npm:
$ npm i -S check-browsers
Using yarn:
$ yarn add check-browsers
<head>
...
<script src="/node_modules/check-browsers/dist/check-browsers.min.js"></script>
...
<link rel="stylesheet" href="..." />
...
</head>
You should import it in head element and before stylesheet.
Because importing in head is processed before page rendering.
and importing before stylesheet is processed before styling.
So page styling is more fast.
require('check-browsers');
import 'check-browsers';
@charset "utf-8";
/* default style */
#test {
font-size: 3em
}
/* each browser style */
.ie6 #test {
color: salmon
}
.ie7 #test {
color: red
}
.ie8 #test {
color: blue
}
.ie9 #test {
color: purple
}
.ie10 #test {
color: orange
}
.ie11 #test {
color: green
}
.edge #test {
color: gray
}
.chrome #test {
color: navy
}
.firefox #test {
color: lime
}
.safari #test {
color: fuchsia
}
.opera #test {
color: brown
}
FAQs
Check your desktop browser and version(Internet Explorer)
We found that check-browsers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.