node
Append, insert, and remove DOM nodes. Also, change node attributes. This allows mutations to be dispatched in environments where MutationObserver is not supported.
mutateNode
Exports an Object
with methods that shouhld be used to mutate HTML.
var mutateNode = require('can-dom-mutate/node');
var el = document.createElement('div');
mutateNode.appendChild.call(document.body, el);