1.0.0 • Published 7 years ago

recursive-copy-progress v1.0.0

Weekly downloads
27
License
MIT
Repository
github
Last release
7 years ago

Recursive copy with progress emitter

Install npm install --save recursive-copy-progress

Usage

const copy = require('recursive-copy-progress')

copy(src, dest, [options, ] callback)
    .on('progress', (update) => {
        console.log('update', update)
    })

Options: supports all the options from original recursive-copy package, plus:

  • interval (int): sets the rate of progress emitter. Default is 100ms