An open API service indexing awesome lists of open source software.

https://github.com/markthree/fast-cpy

Recursive concurrent copy, ultrafast
https://github.com/markthree/fast-cpy

copy go nodejs ultrafast

Last synced: 9 months ago
JSON representation

Recursive concurrent copy, ultrafast

Awesome Lists containing this project

README

          

# fast-cpy

Recursive concurrent copy, ultrafast


## README 🦉

[简体中文](./README_CN.md) | English


## Usage

### install

```shell
npm i fast-cpy
```

### cli

```shell
fast-cpy
```

### program

```ts
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](https://github.com/markthree)

Published under [MIT License](./LICENSE).