go-txt

1.1.0 • Public • Published

go-txt

NPM version

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');

LICENSE

MIT License

Package Sidebar

Install

npm i go-txt

Weekly Downloads

7

Version

1.1.0

License

MIT

Last publish

Collaborators

  • howard.zuo