budu
v1.0.0
Published
Library to batch DOM reads and writes to reduce layout thrashing and getting a better performance for animations and visualisations.
Downloads
10
Maintainers
Readme
budu
Handle a bunch of DOM updates.
Don't let the browser throw away the hard work it has done for you.
More in depth documentation at budu.now.sh
Library to batch DOM reads and writes, reducing layout jank and getting a better performance for animations or layout reflows.
When you change styles the browser checks to see if any of the changes require layout to be calculated, and for that render tree to be updated. Changes to “geometric properties”, such as widths, heights, left, or top all require layout.
Usage
To use budu
install it with npm
or yarn
as follows.
> npm install --save budu
# or
> yarn install budu
After that you can import or require it from your source files.
import schedule from 'budu'
/* or */
const schedule = require('budu')
budu
useswindow.requestAnimationFrame
to schedule measurement and updates. Some older browsers don't support this API. You can still usebudu
by using a polyfill forrequestAnimationFrame
likeraf/polyfill
.To see if the browser you want to support implements
requestAnimationFrame
, follow this link -> Can I Use.
API
import schedule from 'budu'
schedule({
measure: () => {
// call all your expensive DOM reads here
const bounds = element.getBoundingClientRect()
return bounds
},
update: (bounds) => {
// write to the DOM in here
element.style.left = bounds.x + 20 + 'px'
}
})
I created this mini library to make it easier to create performant data visualisations and I learned a lot from the following articles and libraries: