0.0.3 • Published 10 years ago

partoffile v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

partoffile

Meh. Read part of file. Mostly because current way of doing it is too cumbersome.

Installation

$ npm install partoffile

Usage

Function takes 4 parameters :

  • path to file you want to read
  • position from where to start reading
  • position till where to read
  • callback

Callback gets a buffer which can be used however.

Example

var file = require('partoffile');

file('test.txt', 0, 10, function(err, buffer) {
	if(err) throw err;
	console.log(buffer.toString('utf8'));
});

License

MIT

0.0.3

10 years ago

0.0.2

10 years ago

0.1.0

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago