Skip to content

bpostlethwaite/random-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

random-stream

Generate a random stream of acscii characters. Characters are written at random intervals, dt. The time interval dt is chosen between min and max times supplied by the user. Useful for testing, examples and spamming.

Example

var RandomStream = require('../.')

var r = RandomStream({
  min: 250   // in milliseconds
, max: 1000  // in milliseconds
})

r.pipe(process.stdout)

where options.min and options.max are the user supplied random time interval for the random character writes. The times given in the example are the defaults used if no options object is passed in.

Install

npm install random-stream

License

MIT

About

Random ASCII source stream for experimentation and testing. Trivial, silly and sometimes useful.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published