npm.io
0.1.1 • Published 12 years ago

producer

Licence
MIT
Version
0.1.1
Deps
1
Vulns
2
Weekly
0
Stars
3

producer

build status Readable stream that emits godot object events at a particular TTL.

Example

var Producer = require('producer');

var producer = new Produdcer();
//
// Will emit a standard `godot` object every 15 seconds (default values)
//
producer.on('data', function (data) {
  console.dir(data);
});