go-txt
v1.1.0
Published
Quickly copy file from one place to another. You can customize the copying process, for example: replace words
Downloads
5
Readme
go-txt
Quickly copy file from one place to another. You can customize the copying process, for example: replace words
Installation
npm install go-txt --save
Usage
var go = require('go-txt');
go('/tmp/file1.txt', '/tmp2/file2.txt');//this is just copy
//you can customize the copying process
go('/tmp/file1.txt', '/tmp2/file2.txt', function(content){
return content.replace('ABC', 'PLA');
});
//binary file will be copied directly no matter whether you provide a process function
go('/tmp/logo.png', '/tmp2/logo2.png');