0.0.3 • Published 13 years ago

loremipstream v0.0.3

Weekly downloads
7
License
-
Repository
github
Last release
13 years ago

node-loremipstream

A configurable Readable Stream that generates Lorem ipsum. Useful for stream testing.

Usage

var LoremIpStream = require('loremipstream');

var lorem = new LoremIpStream(options);

lorem.on('end', function() {
  console.log(this.sent + ' characters sent');
});

lorem.pipe(process.stdout);

where the following options are supported:

  • size - the total size (in characters) of the stream
  • dataSize - the size (in characters) of each emitted 'data' event
  • dataInterval - how often (in ms) to emit each 'data' event

Install

Dependencies

This library has no production dependencies, only the following test dependencies:

0.0.3

13 years ago

0.0.2

13 years ago

0.0.1

13 years ago