|
1 rok pred | |
---|---|---|
.. | ||
.npmignore | 1 rok pred | |
.travis.yml | 1 rok pred | |
README.md | 1 rok pred | |
index.js | 1 rok pred | |
package.json | 1 rok pred | |
test.js | 1 rok pred |
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