🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

cpy

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cpy

Copy files

Source
npmnpm
Version
4.0.0
Version published
Weekly downloads
1.4M
-4.41%
Maintainers
1
Weekly downloads
 
Created
Source

cpy Build Status

Copy files

Why

  • Fast by using streams.
  • Resilient by using graceful-fs.
  • User-friendly by accepting globs and creating non-existant destination directories.
  • User-friendly error messages.

Install

$ npm install --save cpy

Usage

const cpy = require('cpy');

cpy(['src/*.png', '!src/goat.png'], 'dist']).then(() => {
	console.log('files copied');
});

API

cpy(files, destination, [options])

files

Type: array

Files to copy.

destination

Type: string

Destination directory.

options

Type: object

Options are passed to cp-file and glob.

cwd

Type: string
Default: process.cwd()

Working directory to find source files.

parents

Type: boolean
Default: false

Preserve path structure.

rename

Type: string

Filename used to rename every file in files.

License

MIT © Sindre Sorhus

Keywords

copy

FAQs

Package last updated on 03 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts