rand-stream

0.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i rand-stream

Weekly Downloads

0

Version

0.0.1

License

BSD

Last publish

Collaborators

  • dstokes