0.1.4 • Published 8 years ago

muty v0.1.4

Weekly downloads
24
License
MIT
Repository
github
Last release
8 years ago

muty

Build Status

The W3C DOM MutationObserver API is verbose and unintuitive. This wrapper simply aims to make DOM observation terse and obvious.

What?

Exposes:

// A single function for mutation observation
muty( options, element, callback ) // => MutationObserver

// An options object with all boolean flags set to true for broad capture
muty.options

Allowing:

// Blanket logging of all DOM mutations
muty( muty.options, document, function( records ){ console.log( records ) } )

// In application code, maybe something like this
var editor = document.querySelector( '[contenteditable]' )

muty(
  { characterData : true, subtree : true } ,
  editor,
  function( mutations, observer ){
    editor.classList.add( 'changed' )

    observer.disconnect()
  }
)

What not?

  • A MutationRecord processor, or any kind of higher-level abstraction. Use Mutation Summary instead.
  • A MutationObserver polyfill for non-supporting browsers. Use Mutation Watcher instead.
  • A perfect API:
    • Curry it if you want intermediary partially applied observers.
    • Use flyd (for Fantasy Land streams) or Bluebird (for Promises) if you have opinionated async data flow requirements.
0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.1

8 years ago