fs-cp

v1.4.0
copy a file or a stream to another file
fs cp copy

cp

NPM version Build status Test coverage Dependency Status License Downloads

A tiny utility to help you copy files:

  • Always cleans up file descriptors
  • mkdir -p support
  • Promise support
  • No half-written files
  • Insusceptible to race conditions, meaning you can do multiple copies fine

API

var cp = require('fs-cp')

// file to file
cp('package.json', 'package2.json').then(function () {

})

// stream to file
cp(res, 'response.json').then(function () {

})
npm i fs-cp

Metadata

  • MIT
  • Whatever
  • Jonathan Ong
  • released 2/28/2016

Downloads

Maintainers