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
fsWriteStreamAtomic(filename, [options])
fsWriteStreamAtomic(filename, [options])
filename
{String} The file we want to write tooptions
{Object}chown
{Object} User and group to set ownership after writeuid
{Number}gid
{Number}
encoding
{String} default = 'utf8'mode
{Number} default =0666
flags
{String} default ='w'
Last updated