
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
dom-event-types
Advanced tools
An object of DOM event types and their interfaces.
Data scraped from MDN.
npm install --save-dev dom-event-types
const eventInterfaces = require("dom-event-interfaces");
console.log(eventInterfaces);
//=> { "abort": { "eventInterface": "Event", "bubbles": false, "cancelable": false }, ... }
{
[eventType]: {
eventInterface: string
cancelable: Boolean
bubbles: Boolean
}
}
If cancelable
or bubbles
are undefined, it's because there is no entry for them on MDN.
Some events have duplicate interfaces. To make this package easier to use, duplicates have been removed. You can see a list of events with duplicate interfaces, and the interface that's exported in this project.
name | event interfaces | interface in dom-event-types |
---|---|---|
abort | Event, ProgressEvent, UIEvent | Event |
end | Event, SpeechSynthesisEvent | Event |
error | ProgressEvent, Event, SpeechSynthesisErrorEvent, UIEvent | Event |
load | UIEvent, ProgressEvent | UIEvent |
message | ServiceWorkerMessageEvent, MessageEvent | MessageEvent |
error | ProgressEvent, Event, SpeechSynthesisErrorEvent, UIEvent | Event |
FAQs
DOM events data scraped from MDN
We found that dom-event-types 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.