
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
feature-detector
Advanced tools
An extensible tool for detecting environment features such as WebGL or Web Workers.
npm install feature-detector
import { Detector, FeatureId } from "feature-detector";
const detector = new Detector();
const feature = detector.get(FeatureId.WEBGL);
console.log(feature.supported);
console.log(detector.getMessage(feature));
import { Feature } from "feature-detector";
export class MyFeature extends Feature {
constructor() {
super();
this.name = "My Feature";
// Check if your feature is supported in this environment.
// Note that this.root serves as a reference to the global scope.
this.supported = true || false;
}
}
import { Detector } from "feature-detector";
import { MyFeature } from "./MyFeature.js";
const detector = new Detector();
const MY_ID = "my-feature";
detector.set(MY_ID, new MyFeature());
Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
FAQs
A tool for detecting environment features.
We found that feature-detector 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

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.