
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
Ammer is a proof of concept, building a DOM-event-wrapper with the powers of object-getters and the Proxy-object.
Therefore it does only work in Firefox and Microsoft Edge. Please don't use it in production!
The idea is to specify the event by calling a method, instead of passing the name as a string to a function.
$ npm install --save ammer
First you have to import the ammer-object.
// ES2015 modules
import { ammer } from 'ammer';
// CommonJS modules
var ammer = require('ammer');
// AMD
require(['ammer'], function (ammer) { ... });
// Global variable
var ammer = window.ammer;
Then you have to create an instance. After that you can start binding and unbinding DOM-events.
var amr = ammer.create();
// Binding a click-event
amr.on.click(document.body, function () {
console.log('Clicked the body.');
});
// Unbinding all click-events
amr.off.click(document.body);
You can optionally pass the callback-function to the off-method, as well, to not remove all bindings for an event-type.
var amr = ammer.create();
function onMouseEnter() {
console.log('Mouse did enter ...');
}
// Bind to `mouseenter` ...
amr.on.mouseenter(document.querySelector('#hover-me'), onMouseEnter);
// ... and unbind again.
amr.off.mouseenter(document.querySelector('#hover-me'), onMouseEnter);
All other mouseenter-bindings to this element aren't affected.
The on- and off-methods of the ammer-object set the current mode (addListener or removeListener) and return a Proxy-instance, that handles all the get-calls. Thus it's possible to call all the event-name-methods, though they aren't explicitly defined.
Beerware
FAQs
DOM-Event-Manager, leveraging the powers of object-getters & the Proxy-object
We found that ammer 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 Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.