Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

dom2dom

blackmiaool2ISC1.0.1

readme

dom2dom

Install

npm i -S dom2dom

Usage

import D2D from "dom2dom";

const d2d=new D2D({
    from: $("#input"), to: $("#button"), arrowOptions: {
        strokeStyle: '#4CAF50',
        lineWidth: 3,
    }
});
setTimeout(()=>{
    d2d.destroy();
},2000);