raf-queue

0.2.0 • Public • Published

raf-queue

Batch jobs to fire in the next frame using requestAnimationFrame.

Installation

with component:

component install anthonyshort/raf-queue

with browserify and friends:

npm install raf-queue

Usage

var frame = require('raf-queue');
 
// Add jobs to the job, returns an id
var job = frame.add(increment);
 
// Remove jobs from the queue
frame.remove(job);
 
// Fires after the jobs from the next frame are done
frame.defer(function(){
  console.log('job done!');
});

Readme

Keywords

none

Package Sidebar

Install

npm i raf-queue

Weekly Downloads

3

Version

0.2.0

License

none

Last publish

Collaborators

  • anthonyshort