Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlmakes/miniraf
ES module ponyfill for requestAnimationFrame
https://github.com/jlmakes/miniraf
animation performance ponyfill
Last synced: 10 days ago
JSON representation
ES module ponyfill for requestAnimationFrame
- Host: GitHub
- URL: https://github.com/jlmakes/miniraf
- Owner: jlmakes
- License: mit
- Created: 2018-01-08T15:18:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-12T05:38:33.000Z (over 6 years ago)
- Last Synced: 2024-10-13T11:14:47.219Z (about 1 month ago)
- Topics: animation, performance, ponyfill
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Installation
## Browser
A simple and fast way to get started is to include this script on your page:
```html
```
This will create the global variable `miniraf`.
## Module
```bash
npm install miniraf
```#### CommonJS
```js
const miniraf = require('miniraf')
```#### ES2015
```js
import miniraf from 'miniraf'
```