Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

concat-files

vvo16.1kMIT0.1.1

Concatenate files asynchronously

readme

concat-files

Build Status

example

  var concat = require('concat-files');

  concat([
    '/my/first/file',
    '/another/file',
    '/one/last/file'
  ], '/to/destination', function(err) {
    if (err) throw err
    console.log('done');
  });

tests

npm test

benchmarks

node bench

license

MIT