![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | README.md | 11 years ago | 710 | |
![]() | index.js | 11 years ago | 1.2K | |
![]() | package.json | 2 years ago | 1.4K | |
![]() | test.js | 11 years ago | 1.1K |
slicing stream like buffer/string
$ npm install stream-slice --save
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'));
MIT