Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
browser-event-debugger
Advanced tools
For those moments when you don't know who's adding event listeners on a page.
For those moments when you don't know who's adding event listeners on a page.
browser-event-debugger
allows you to see which events are being added / removed, from where (stack trace), and on what elements.
By default it will log this info to the console, but you have the option to provide a custom function that wraps the original ones.
The idea came from this stackoverflow question.
If you just want to add it as a script to your page, you first you have to build it:
# this will create a EventDebugger.min.js file inside `dist`
npm run build
Then just include the script into your page (before events are being added). After that you need to enable it to get it running, as in the following example:
window._EventDebugger.start();
document.addEventListener("DOMContentLoaded", function(event) {
console.log("DOM fully loaded and parsed");
});
var titleEl = document.getElementById('title');
var onClickTitle = function(event) {
console.log("you've clicked on the title wohoo!");
};
titleEl.addEventListener("click", onClickTitle, false);
setTimeout(function() {
titleEl.removeEventListener("click", onClickTitle, false);
}, 10000);
Same as above, but instead of using window._EventDebugger
you require it:
var EventDebugger = require('browser-event-debugger');
// ...
<INSERT NAME>
handles events, if it uses delegation or not<X>
npm test
FAQs
For those moments when you don't know who's adding event listeners on a page.
The npm package browser-event-debugger receives a total of 2 weekly downloads. As such, browser-event-debugger popularity was classified as not popular.
We found that browser-event-debugger 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.