November 2016
— Does anyone know if a Virtual DOM can be written to agnostically?
Ie: If I have something that writes to the real DOM normally, could it just as easily write to the virtual one?
— The virtual dom is one shallow copy, include minimal information with real dom
— Can is be interchangeable for something like... document.getElementById("id");
document.getElementById("id");
— Like so virtualDocument.getElementById("id");
virtualDocument.getElementById("id");
— Maybe
— I am guessing I'd need my own builtins if they aren't copied from the prototype
— Your view "h" virtual dom?
— "h"?
— Https://github.com/dominictarr/hyperscript/blob/master/README.md
— Sorry hyperscript
— Hmm, no