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
- Host: GitHub
- URL: https://github.com/markthree/fast-cpy
- Owner: markthree
- License: mit
- Created: 2023-03-07T11:00:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T05:37:28.000Z (about 2 years ago)
- Last Synced: 2025-06-30T02:43:09.297Z (10 months ago)
- Topics: copy, go, nodejs, ultrafast
- Language: TypeScript
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).