https://github.com/phantomstudios/use-animation-frame
A React hook to effortlessly run a single shared requestAnimationFrame() for all instances of the hook used with adjustable frames per second.
https://github.com/phantomstudios/use-animation-frame
hook hooks react react-hook useanimationframe
Last synced: about 1 month ago
JSON representation
A React hook to effortlessly run a single shared requestAnimationFrame() for all instances of the hook used with adjustable frames per second.
- Host: GitHub
- URL: https://github.com/phantomstudios/use-animation-frame
- Owner: phantomstudios
- License: mit
- Created: 2021-04-18T22:28:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-11-17T17:00:23.000Z (5 months ago)
- Last Synced: 2025-11-17T17:32:39.570Z (5 months ago)
- Topics: hook, hooks, react, react-hook, useanimationframe
- Language: TypeScript
- Homepage:
- Size: 1.16 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Support: SUPPORT.md
Awesome Lists containing this project
README
# use-animation-frame
[![NPM version][npm-image]][npm-url]
[![Actions Status][ci-image]][ci-url]
[![PR Welcome][npm-downloads-image]][npm-downloads-url]
A React hook to effortlessly run a single shared [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame) for all instances of the hook used with adjustable FPS (frames per second).
## Installation
Install this package with `npm`.
```bash
npm i @phntms/use-animation-frame
```
## API
Accepts first `callback` and second `framesPerSecond`:
```ts
useAnimationFrame(callback, framesPerSecond);
```
`callback` is **required** and is called on _every_ animation frame window.
`framesPerSecond` is _optional_ and can be used to control how often callback triggers. By default callback will trigger around ~60 times per second (approximately every ~16ms), though you can change this, for example, `30` can be used to trigger callback ~30 times per second.
**Note**: Any FPS can be used, although intervals cannot be faster than the `requestAnimationFrame()` limit.
### Output
The callback returns `deltaTime` - the total time in `ms` since the hook last run.
**Note**: Due to the nature of `requestAnimationFrame()` this will always likely differ in time.
## Single Shared `requestAnimationFrame()` Instance
Most implementations of this hook create unique `requestAnimationFrame()` loops for all instances of the hook. This is fine when you only use the hook once, but if you start running multiple hooks simultaneously this can get expensive. To counteract this issue, this library only ever creates a single global loop that we 'hook' into for all instances of the hook used. As such, you haven't got to worry about the potential performance hit of using multiple instances of the hook. Additionally if used alongside custom `framesPerSecond`, you can get much greater performance out of your components!
## Examples
```ts
import useAnimationFrame from "@phntms/use-animation-frame";
useAnimationFrame((deltaTime: number) => {
console.log(
`I'm called approximately every ~16ms, but I was actually triggered after ${deltaTime}ms.`,
);
});
useAnimationFrame((deltaTime: number) => {
console.log(
`I'm called approximately 30 times per second, but I was actually trigger after ${deltaTime}ms.`,
);
}, 30);
```
## 🍰 Contributing
Want to get involved, or found an issue? Please contribute using the GitHub Flow. Create a branch, add commits, and open a Pull Request or submit a new issue.
Please read `CONTRIBUTING` for details on our `CODE_OF_CONDUCT`, and the process for submitting pull requests to us!
[npm-image]: https://img.shields.io/npm/v/@phntms/use-animation-frame.svg?style=flat-square&logo=react
[npm-url]: https://npmjs.org/package/@phntms/use-animation-frame
[npm-downloads-image]: https://img.shields.io/npm/dm/@phntms/use-animation-frame.svg
[npm-downloads-url]: https://npmcharts.com/compare/@phntms/use-animation-frame?minimal=true
[ci-image]: https://github.com/phantomstudios/use-animation-frame/workflows/Test/badge.svg
[ci-url]: https://github.com/phantomstudios/use-animation-frame/actions