npm install attachevent
Polyfil for event handling when addEventListener isn't available
With npm do:
```
npm install attachevent
With browserify
` js
var attachevent = require('attachevent');
attachevent.attachEvent(window, 'load', function load() {
attachevent.detachEvent(load);
});
``