An open API service indexing awesome lists of open source software.

https://github.com/fabiosantoscode/worklet

Simpler API for the Worklet W3C API
https://github.com/fabiosantoscode/worklet

Last synced: 3 months ago
JSON representation

Simpler API for the Worklet W3C API

Awesome Lists containing this project

README

          

# Worklet

Use the CSS "houdini" API today with this easy wrapper!

## Example

```javascript
const worklet = require('worklet')
const element = document.getElementById('target')

worklet.registerPaint(element, (ctx, dimensions) => {
ctx.fillRect(0, 0, 10, 10)
})
```