HckApm/node_modules/stream-slice
minicx 99e5f883a3 second commit 2023-12-23 14:56:27 +03:00
..
.npmignore second commit 2023-12-23 14:56:27 +03:00
.travis.yml second commit 2023-12-23 14:56:27 +03:00
README.md second commit 2023-12-23 14:56:27 +03:00
index.js second commit 2023-12-23 14:56:27 +03:00
package.json second commit 2023-12-23 14:56:27 +03:00
test.js second commit 2023-12-23 14:56:27 +03:00

README.md

stream-slice Build Status

slicing stream like buffer/string

Installation

$ npm install stream-slice --save

Usage

var fs = require('fs');
var slice = require('stream-slice').slice;
fs.createReadStream('your path')
  .pipe(slice(10, 100))
  .on('data', function() {
    // here we only get the buffer from 10th to 100th.
  });

slicing file

var fs = require('fs');
var slice = require('stream-slice').slice;
fs.createReadStream('sourc file path')
  .pipe(slice(0, 200))
  .pipe(fs.createWriteStream('dest file path'));

License

MIT