New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

write-file-queue

A writeFile queue which reattempts to write after errors occur

0.0.1
latest
Version published
Weekly downloads
5.5K
14.2%
Maintainers
1
Weekly downloads
 
Created

node-write-file-queue

A writeFile queue which will re-attempt to write files after errors occur. The writes are delayed by the waitTime option and will re-occurr up to retries many times.

install

npm install write-file-queue

example/usage

var writeFile = require('write-file-queue')({
    retries : 1000 /* number of write attempts before failing */
    , waitTime : 1000 /* number of milliseconds to wait between write attempts*/ 
    , debug : console.error /* optionally pass a function to do dump debug information to */
});

writeFile('/dev/usb/lp0', 'data to send to lp0', function (err) {
	if (err) {
		console.log('Write ultimately failed', err);
	}
});

license

MIT

FAQs

Package last updated on 01 Aug 2014

Did you know?

Socket

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.

Install

Related posts