0.0.1 • Published 10 years ago

ncprs v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

ncprs

node-copy-recursive-stream

Example

var ncprs = require('ncprs');

ncprs(source, dest)
  .on('data', function (file) {
    console.log('  create ' + file.target);
  });

Filter

var ncprs = require('ncprs');

var options = {};

options.filter = function (file, cb) {
  cb(null, file.path.endsWith('.css'));
};

ncprs(source, dest, options);

License

The MIT License (MIT)

http://poying.mit-license.org/