Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.3 KB

README.md

File metadata and controls

42 lines (26 loc) · 1.3 KB

Node BufferedReader

Fully configurable buffered reader for node.js

Availability | Compatibility | Documentation

Version: 0.1.0

When you need to read a file you typically read a chunk of bytes called "buffer" to avoid multiple calls to the underlying I/O layer, so instead of reading directly from the disk, you read from the previous filled buffer. Doing that you win performance.

This library allows you to read files using internal buffers, so you don't have to worry about them. In addition, you can read a text file line by line.

Availability

Via npm:

npm install buffered-reader

Or simply copying build/buffered-reader.js into your project's directory and require() accordingly.


Compatibility

✔ Node *


Documentation

Reference
Examples
Change log
MIT License