0.2.3 • Published 11 years ago

buffered-writer v0.2.3

Weekly downloads
45
License
-
Repository
github
Last release
11 years ago

Node BufferedWriter

Fully configurable buffered writer for node.js

Availability | Compatibility | Documentation

Version: 0.1.8

When you need to write a file you typically write the content in little chunks at a time. To avoid multiple calls to the underlying I/O layer you need to use a piece of memory called "buffer", so instead of writting directly to the disk, you write to the buffer and when it is filled the content is written to disk. Doing this you win performance.

This library allows you to write files using internal buffers, so you don't have to worry about them.

Availability

Via npm:

npm install buffered-writer

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


Compatibility

✔ Node 0.4.10+


Documentation

Reference
Examples
Change log
MIT License

0.2.3

11 years ago

0.2.2

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.12

12 years ago

0.1.11

12 years ago

0.1.10

12 years ago

0.1.9

12 years ago

0.1.8

12 years ago

0.1.7

12 years ago

0.1.6

12 years ago

0.1.5

12 years ago

0.1.4

12 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago

0.0.1

12 years ago