Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
slice file or join files or avg slice file.idea from slice-file.
safely create multiple ReadStream or WriteStream objects from the same file descriptor. from node-fd-slicer.
With npm do:
npm install fs-slice --save
var fss = require('fs-slice');
Create a fs-slice instance fssObj
from a filename
and some options opts
.
targetFile
- String | Buffer. target file.opts.blockSize
- Number. set how much data to read in each chunk. Default 204800.opts.destPath
- String. make sure that it is a folder path. Default os.tmpdir();
.Return a readable stream that emits
Available opts
:
start
- Number. The offset into the file to start reading from. Defaults 0.end
- Number. Exclusive upper bound offset into the file to stop reading
from. Defaults 204800.opts
is an object or string with the following defaults:
{
flags: 'r',
encoding: null,
fd: fssObj.fd,
mode: 0o666,
autoClose: true
}
to see fs.createReadStream
filepath
- String. Make sure filepath
is a file path.rOptions
- Object. read stream options. wOptions
- Object. write stream options.rOptions wOptions
is an object or string with the following defaults:
rOptions:
{
start: 0,
end: 204800,
flags: 'r',
encoding: null,
fd: fssObj.fd,
mode: 0o666,
autoClose: true
}
wOptions:
{
flags: 'w',
defaultEncoding: 'utf8',
fd: fs.openSync(filepath, 'w'),
mode: 0o666,
autoClose: true
}
to see fs.createReadStream fs.createWriteStream
Available opts
:
index
- Number. block start index. Default 1.filenameArray
- Array[String]. multiple file fragments path, make sure filenameArray
is a Array.writable
- WriteStream. make sure writable
is a write stream.filenameArray
- Array[String]. multiple file fragments path.filepath
- WriteStream. Make sure filepath
is a file path.slice file, return read stream
var fss = require('fs-slice');
var fsText = fss('./test/data/text');
fsText.slice({start: 0, end: 20}).pipe(process.stdout);
A
A's
AA's
AB's
ABM'
slice file, generate new file
var fss = require('fs-slice');
var fs = require('fs');
var IMAGE_FILENAME = './test/data/image.jpg';
var fsImage = fss(IMAGE_FILENAME);
fsImage
.sliceAsFile('./new_image.jpg', {start: 0, end: 204800})
.then(function () {
console.info('image: ', fs.statSync(IMAGE_FILENAME));
console.info('new_image: ',fs.statSync('./new_image.jpg'));
fs.unlinkSync('./new_image.jpg');
})
.catch(function (err) {
console.error(err);
});
image:
{
dev: 16777220,
mode: 33188,
nlink: 1,
uid: 501,
gid: 20,
rdev: 0,
blksize: 4096,
ino: 29591490,
size: 516943,
blocks: 1016,
atime: 2017-05-16T08:38:04.000Z,
mtime: 2017-05-12T08:18:13.000Z,
ctime: 2017-05-15T08:12:43.000Z,
birthtime: 2017-05-12T08:18:13.000Z
}
new_image:
{ dev: 16777220,
mode: 33188,
nlink: 1,
uid: 501,
gid: 20,
rdev: 0,
blksize: 4096,
ino: 29878556,
size: 204800, //200kb
blocks: 400,
atime: 2017-05-16T08:37:13.000Z,
mtime: 2017-05-16T08:38:04.000Z,
ctime: 2017-05-16T08:38:04.000Z,
birthtime: 2017-05-16T08:37:13.000Z
}
average slice file, generate multiple file fragments
var fss = require('fs-slice');
var fs = require('fs');
var IMAGE_FILENAME = './test/data/image.jpg';
var fsImage = fss(IMAGE_FILENAME);
fsImage
//blockSize default : 204800 byte (200kb)
.avgSliceAsFile()
.then(function (files) {
console.info('##############', IMAGE_FILENAME, 'size: ', fs.statSync(IMAGE_FILENAME).size);
console.info('############## files: \n', files);
console.info('##############');
for(let file of files){
console.info(file, 'size: ',fs.statSync(file).size);
fs.unlinkSync(file);
}
})
.catch(function (err) {
console.error(err);
});
############## ./test/data/image.jpg size: 516943
############## files:
[ '/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/a7ed4d23c8d3ddf3761db74823196a54_1_image.jpg',
'/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/260d0a57d94d31aea6e3892b239e1a5a_2_image.jpg',
'/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/f47c7e739b6aa75df173751c9788d746_3_image.jpg',
############## files size:
/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/a7ed4d23c8d3ddf3761db74823196a54_1_image.jpg size: 204800
/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/260d0a57d94d31aea6e3892b239e1a5a_2_image.jpg size: 204800
/var/folders/02/g9c5v3jn3fv7q1zbnxhf7n280000gn/T/f47c7e739b6aa75df173751c9788d746_3_image.jpg size: 107343
multiple file fragments, join into write stream
var fss = require('fs-slice');
var fs = require('fs');
var IMAGE_FILENAME = './test/data/image.jpg';
var fsImage = fss(IMAGE_FILENAME);
var tmpFiles = null;
fsImage
.avgSliceAsFile({destPath: './test/temp/'})
.then(function (files) {
tmpFiles = files;
var writable = fs.createWriteStream('./new_image.jpg');
return fsImage.join(files, writable);
})
.then(function () {
for(let file of tmpFiles){
console.info(file, 'size: ',fs.statSync(file).size);
fs.unlinkSync(file);
}
console.info('./new_image.jpg', 'size: ',fs.statSync('./new_image.jpg').size);
fs.unlinkSync('./new_image.jpg');
})
.catch(function (err) {
console.error(err);
});
test/temp/5529a793a61c5867ae0da4831e41a024_1_image.jpg size: 204800
test/temp/9bd357ca82355b1919f9dd6a7633a26e_2_image.jpg size: 204800
test/temp/48f548b841d3ceeab7a6887984b1fdf3_3_image.jpg size: 107343
./new_image.jpg size: 516943
multiple file fragments, join into one file
var fss = require('fs-slice');
var fs = require('fs');
var TEXT_FILENAME = './test/data/text';
var fsText = fss(TEXT_FILENAME);
fsText
.sliceAsFile('./text1',{start: 0, end: 10})
.then(function () {
return fsText.sliceAsFile('./text2',{start: 10, end: 20});
})
.then(function () {
return fsText.joinAsFile(['./text1', './text2'], './new_text');
})
.then(function (files) {
console.info('############## file content');
console.info('text1: ', JSON.stringify(fs.readFileSync('./text1', 'utf-8')));
console.info('text2: ', JSON.stringify(fs.readFileSync('./text2', 'utf-8')));
console.info('############## files size');
console.info('./text1', 'size: ',fs.statSync('./text1').size);
console.info('./text2', 'size: ',fs.statSync('./text2').size);
console.info('');
console.info('');
console.info('############## new file content');
console.info('./new_text: ', JSON.stringify(fs.readFileSync('./new_text', 'utf-8')));
console.info('############## new file size');
console.info('./new_text', 'size: ',fs.statSync('./new_text').size);
fs.unlinkSync('./text1');
fs.unlinkSync('./text2');
fs.unlinkSync('./new_text');
})
.catch(function (err) {
console.error(err);
});
############## file content
text1: "A\nA's\nAA's"
text2: "\nAB's\nABM'"
############## files size
./text1 size: 10
./text2 size: 10
############## new file content
./new_text: "A\nA's\nAA's\nAB's\nABM'"
############## new file size
./new_text size: 20
MIT
FAQs
slice file or join files or avg slice file.
The npm package fs-slice receives a total of 2 weekly downloads. As such, fs-slice popularity was classified as not popular.
We found that fs-slice demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.