1.0.0 • Published 5 years ago

quick-dom-node v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Quick DOM Node

Generates fake DOM node's in Node.... These Nodes are so fake, they will probably not work for your use case, but if they do, they will be super fast.

I probably shouldn't have made this package.

npm install quick-dom-node

Example:

const { makeDOMNode } = require('quick-dom-node');

const veryFakeDOMNode = makeDOMNode({
  nodeName: 'div',
});

veryFakeDOMNode.appendChild(makeDOMNode({

});