mutate
Mutate an element by appending, inserting, and removing DOM nodes. Use this so that on the server "inserted" will be fired.
var mutate = require("can-util/dom/mutate/mutate");
var el = document.createElement("div");
el.addEventListener("inserted", function(){
console.log("Inserted was fired!");
});
mutate.appendChild.call(document.body, el);