ncprs

0.0.1 • Public • Published

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/

Readme

Keywords

Package Sidebar

Install

npm i ncprs

Weekly Downloads

0

Version

0.0.1

License

MIT

Last publish

Collaborators

  • poying