go-txt

Quickly copy file from one place to another. You can customize the copying process, for example: replace words

Usage no npm install needed!

<script type="module">
  import goTxt from 'https://cdn.skypack.dev/go-txt';
</script>

README

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