save-file-atomic
v1.0.0
Published
Save anything to file atomic
Downloads
11
Readme
savefile
Save anything to file atomic.
Install
$ npm i save-file-atomic --save
Usage
const savefile = require('save-file-atomic');
// anything can be: ReadStream, Buffer, String
// target is the target file path
await savefile(anything, target);
// copy file atomic
await savefile.copy(source, target);
Questions & Suggestions
Please open an issue here.