Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkristof200/ts-syncpathutils
https://github.com/kkristof200/ts-syncpathutils
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kkristof200/ts-syncpathutils
- Owner: kkristof200
- License: mit
- Created: 2020-09-27T07:35:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-26T13:44:33.000Z (almost 4 years ago)
- Last Synced: 2024-10-06T16:38:23.726Z (about 1 month ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# syncpathutils
sync path utils, such as save, load, exists, mkdir, touch etc
## Install
```bash
npm i syncpathutils
```## Usage
```typescript
import * as spu from 'syncpathutils'spu.mkdir('./jaja')
spu.cp('inPath', 'outPath')
// ... etc
```