.once
for DOM Events
var once = require('dom-once')
once(document.body, 'load', function () {
console.log('Hello world')
})
Works like target.addEventListener(type, listener, useCapture)
/ target.removeEventListener(type, listener)
just all automagically. No fluf, no fuss, plain and simple
npm install dom-once