1.0.0 • Published 8 years ago

node-checkpoints v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

node-checkpoints

Node module for accumulating events and running scripts accordingly.

Installation

npm install node-checkpoints

Usage

  var checkpoints = new Checkpoints(callback, 2000);
  checkpoints.addEvents(['event1', 'event2']);
  checkpoints.addAssets('http://www.domain.tld/some/image.jpg');
  checkpoints.execute();
  checkpoints.markComplete('event1');
  checkpoints.markComplete('event2');
  // image.jpg finished loading meanwhile
  // -> callback is triggered.

Tests

npm test