random-access-file
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/random-access-file package

0.2.0 • Public • Published

random-access-file

Continuous reading or writing to a file using random offsets and lengths

npm install random-access-file

Why?

If you are receiving a file in multiple pieces in a distributed system it can be useful to write these pieces to disk one by one in various places throughout the file without having to open and close a file descriptor all the time.

random-access-file allows you to do just this.

It is easy to use

var randomAccessFile = require('random-access-file');

var file = randomAccessFile('my-file.txt');

file.write(10, new Buffer('hello'), function(err) {
    // write a buffer to offset 10
    file.read(10, 5, function(err, buffer) {
        console.log(buffer); // read 5 bytes from offset 10
    });
});

file will use an open file descriptor. When you are done with the file you should call file.close().

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i random-access-file@0.2.0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • mafintosh