Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
The cpy npm package is a simple file copying utility for Node.js. It allows you to copy files or directories from one location to another with various options such as overwriting existing files, preserving directory structure, and more.
Copy files
This feature allows you to copy files matching a specific pattern (e.g., all PNG files in the 'source' directory) to a destination directory.
const cpy = require('cpy');
cpy(['source/*.png'], 'destination').then(() => {
console.log('Files copied!');
});
Copy files with options
This feature allows you to copy files with additional options such as not overwriting existing files (`overwrite: false`) and preserving the directory structure (`parents: true`).
const cpy = require('cpy');
cpy(['source/*.png'], 'destination', {
overwrite: false,
parents: true
}).then(() => {
console.log('Files copied with options!');
});
Copy and rename
This feature allows you to copy a file and rename it in the destination directory using a rename function.
const cpy = require('cpy');
cpy(['source/file.txt'], 'destination', {
rename: basename => `new-${basename}`
}).then(() => {
console.log('File copied and renamed!');
});
The ncp (node-copy-paste) package is similar to cpy and provides asynchronous recursive file copying with Node.js. It is an older package and does not provide as modern a syntax as cpy, which uses promises.
fs-extra is a package that extends the built-in fs module and includes file copying functionality. It offers a broader set of file system operations compared to cpy, including copying, moving, deleting files, and more.
copyfiles is a package that provides a command-line utility to copy files. It can be used in npm scripts and has a flat option to copy all files to a single directory level. It is less feature-rich than cpy when it comes to API usage within Node.js code.
Copy files
$ npm install --save cpy
var cpy = require('cpy');
cpy(['src/*.png'], 'dist', function (err) {
console.log('files copied');
});
Required
Type: array
Files to copy.
Required
Type: string
Destination directory.
Type: object
Options are passed to cp-file and glob.
Type: string
Default: process.cwd()
The working directory to look for the source files.
Type: boolean
Default: false
Keep the path structure when copying files.
Type: function
$ npm install --global cpy
$ cpy --help
Usage
$ cpy <source> <destination> [--no-overwrite]
Example
$ cpy 'src/*.png' dist
<source> can contain globs if quoted
See cp-file
if you only need to copy a single file.
MIT © Sindre Sorhus
FAQs
Copy files
The npm package cpy receives a total of 1,304,897 weekly downloads. As such, cpy popularity was classified as popular.
We found that cpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.