/ archiveofbelonging.org / back / node_modules / fs-write-stream-atomic /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]node_modules/2 years ago -  
[DIR]test/2 years ago -  
[   ]LICENSE10 years ago765 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك]
[TXT]README.md10 years ago1.0Kf12eb36 documentaiton updates [كارل مبارك]
[   ]index.js8 years ago5.0K 
[   ]package.json2 years ago1.9K7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك]
README.md

fs-write-stream-atomic

Like fs.createWriteStream(...), but atomic.

Writes to a tmp file and does an atomic fs.rename to move it into place when it's done.

First rule of debugging: It's always a race condition.

USAGE

var fsWriteStreamAtomic = require('fs-write-stream-atomic')
// options are optional.
var write = fsWriteStreamAtomic('output.txt', options)
var read = fs.createReadStream('input.txt')
read.pipe(write)

// When the write stream emits a 'finish' or 'close' event,
// you can be sure that it is moved into place, and contains
// all the bytes that were written to it, even if something else
// was writing to `output.txt` at the same time.

fsWriteStreamAtomic(filename, [options])

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80