rand-stream

v0.0.0
Filter random chunks of a stream
stream random

rand-stream

Filter a stream into random chunks.

Build Status
NPM

Example

var rand   = require('rand')
  , split  = require('split')
  , fs     = require('fs');
  
// pipe a random collection of lines to stdout
fs.createReadStream(somefile)
  .pipe(split())
  .pipe(rand(2))
  .pipe(process.stdout)

  // => line 8
  // => line 3

install

With npm do:

npm install rand-stream

Metadata

  • BSD
  • Whatever
  • Drew Stokes
  • released 7/20/2013

Downloads

Maintainers