Socket
Socket
Sign inDemoInstall

copy-file-util

Package Overview
Dependencies
6
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    copy-file-util

Copy or rename a file with optional package version number (CLI tool designed for use in npm package.json scripts)


Version published
Weekly downloads
1.4K
Maintainers
1
Install size
315 kB
Created
Weekly downloads
 

Readme

Source

copy-file-util

<img src=https://centerkey.com/graphics/center-key-logo.svg align=right width=200 alt=logo>

Copy or rename a file with optional package version number (CLI tool designed for use in npm package.json scripts)

License:MIT npm Build

copy-file-util takes a source file and copies it to a new destination.  The command's console output includes a timestamp and formatting helpful in build systems.

<img src=https://raw.githubusercontent.com/center-key/copy-file-util/main/screenshot.png width=800 alt=screenshot>

A) Setup

Install package for node:

$ npm install --save-dev copy-file-util

B) Usage

1. npm package.json scripts

Run copy-file from the "scripts" section of your package.json file.

Parameters:

  • The first parameter is the source file.
  • The second parameter is the target file or folder (use the --folder flag).

Example package.json scripts:

   "scripts": {
      "pub-license": "copy-file src/LICENSE doc/license.txt",
      "backup-license": "copy-file src/LICENSE --folder backup",
   },

2. Command-line npx

Example terminal commands:

$ npm install --save-dev copy-file-util
$ copy-file src/web/api.html docs/api-manual.html

You can also install copy-file-util globally (--global) and then run it anywhere directly from the terminal.

3. CLI flags

Command-line flags:

FlagDescriptionValues
--cdChange working directory before starting copy.string
--folderIndicates the target is a folder.N/A
--moveDelete the source file after copying it.N/A
--notePlace to add a comment only for humans.string
--quietSuppress informational messages.N/A
--no-overwriteAbort if target file already exists.N/A

Examples:

  • copy-file app.js app.mjs --quiet
    Displays no output.

  • copy-file app.js --folder dist
    Copies app.js into the dist folder.

  • copy-file 'src/Legal Notice.md' --folder dist
    Copies a file that has a space in its filename.

  • copy-file app.js --move --folder dist
    Like the mv Unix command.

  • copy-file default-config.json settings/config.json --no-overwrite
    Performs a safe copy that aborts if the settings/config.json file already exists.

Note: Single quotes in commands are normalized so they work cross-platform and avoid the errors often encountered on Microsoft Windows.

4. Template variables

The target parameter can contain template variables, like {{package.version}} and {{package.name}}, which will be replaced with values with values from your project's package.json file.

Example:

  • copy-file build/app.js dist/app-v{{package.version}}.js
    Creates a copy of app.js named something like app-v1.2.3.js based on the version of your project.

C) Application Code

Even though copy-file-util is primarily intended for build scripts, the package can be used programmatically in ESM and TypeScript projects.

Example:

import { copyFile } from 'copy-file-util';

const result = copyFile.cp('src/web/api.html' { targetFile: 'docs/api-manual.html' });
console.log('Execution time:', result.duration, 'ms');

See the TypeScript Declarations at the top of copy-file.ts for documentation.



CLI Build Tools for package.json

  • 🎋 add-dist-headerPrepend a one-line banner comment (with license notice) to distribution files
  • 📄 copy-file-utilCopy or rename a file with optional package version number
  • 📂 copy-folder-utilRecursively copy files from one folder to another folder
  • 🪺 recursive-execRun a command on each file in a folder and its subfolders
  • 🔍 replacer-utilFind and replace strings or template outputs in text files
  • 🔢 rev-web-assetsRevision web asset filenames with cache busting content hash fingerprints
  • 🚆 run-scripts-utilOrganize npm package.json scripts into named groups of easy to manage commands
  • 🚦 w3c-html-validatorCheck the markup validity of HTML files using the W3C validator

Feel free to submit questions at:
github.com/center-key/copy-file-util/issues

MIT License

Keywords

FAQs

Last updated on 18 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc