Skip to content

markthree/fast-cpy

Repository files navigation

fast-cpy

Recursive concurrent copy, ultrafast


README 🦉

简体中文 | English


Usage

install

npm i fast-cpy

cli

fast-cpy <src> <dest>

program

import { copy, copyBin } from "fast-cpy";

await copy("src", "dest"); // Node native stream, supporting large files

await copyBin("src", "dest"); // Use go, suitable for multiple files

License

Made with markthree

Published under MIT License.