easy-file
v0.1.0
Published
Easy file manipulation.
Downloads
6
Readme
A simple file reader and writer.
var file = require('easy-file');
// Will create missing directories
file.write('tmp/hello.txt', 'hello world')
file.read('tmp/hello.txt', function(contents){
console.log(contents);
})
Pull Requests Welcome