LinkeDOM is a triple-linked list based DOM-like namespace, for DOM-less environments, with the following goals: avoid maximum callstack/recursion or crashes, even under heaviest conditions. guarantee linear performance from small to big documents. be close to the current DOM standard, but not too close. import {DOMParser, parseHTML} from 'linkedom'; // Standard way: text/html, text/xml, image/svg+

