You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
巴林闲侠
6f4dcd76d0
|
3 years ago | |
---|---|---|
.. | ||
.npmignore | 3 years ago | |
.travis.yml | 3 years ago | |
README.md | 3 years ago | |
index.js | 3 years ago | |
package.json | 3 years ago | |
test.js | 3 years ago |
README.md
stream-slice
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