copy-files
Streaming file copier
Install
npm install copy-files --save
Usage
var copy = ; ;
copy(options, callback)
Async copy method using streams to copy files
options
files
- list of files to copy. The key is the copied file's name and the value is the file to copydest
- the destination directory to copy the files tooverwrite
- OPTIONAL - flag telling the copy method whether or not to overwrite existing files indest
directory. Defaults to false.
Run Tests
npm install
npm test