Prepend data to a file, creating the file if it not yet exists.
$ npm install --save prepend-file
var prependFile = require('prepend-file');
prependFile('message.txt', 'data to prepend', function (err) {
if (err) {
// Error
}
// Success
console.log('The "data to prepend" was prepended to file!');
});
* filename String
* data String | Buffer
* options Object
encoding String | Null default = 'utf8'
mode Number default = 438 (aka 0666 in Octal)
* callback Function
Asynchronously prepend data to a file, creating the file if it not yet exists. The data
can be a string or a buffer.
The synchronous version of prependFile
. Returns undefined
.
MIT © Hemanth.HM