0.1.0 • Published 11 years ago

sslice v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

sslice

Build Status

Slice streams with ease. This was originally created for use with split but should work with any stream buffer delimiter.

var sslice = require('sslice')
  , split  = require('split')
  , fs     = require('fs');
  
// pipe all but the first and last line of a file to stdout
fs.createReadStream(somefile)
  .pipe(split())
  .pipe(sslice(1, -1)
  .pipe(process.stdout)

install

With npm do:

npm install sslice
0.1.0

11 years ago

0.0.0

11 years ago