README
DOMes
Lightweight library allowing collect detailed statistics of DOM elements
🚀 Install
Using npm:
npm install --save-dev domeslib
📋 Using
import DOMes from "domeslib"
const DOMElementsStatistics = new DOMes({
displayed: true,
}).dispatch()
Using Effect Hook
useEffect(() => {
const DOMElementsStatistics = new DOMes({
displayed: true,
}).dispatch()
}, [])