JSPM

quick-dom-node

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q33156F
    • License MIT

    Package Exports

    • quick-dom-node

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (quick-dom-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    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({
    
    });