worklet
v1.0.3
Published
Use the CSS "houdini" API today with this easy wrapper!
Downloads
5
Readme
Worklet
Use the CSS "houdini" API today with this easy wrapper!
Example
const worklet = require('worklet')
const element = document.getElementById('target')
worklet.registerPaint(element, (ctx, dimensions) => {
ctx.fillRect(0, 0, 10, 10)
})