https://github.com/lsongdev/tiny-file
Tiny file utils for Node.js
https://github.com/lsongdev/tiny-file
filesystem mkdirp rmdir
Last synced: 10 months ago
JSON representation
Tiny file utils for Node.js
- Host: GitHub
- URL: https://github.com/lsongdev/tiny-file
- Owner: lsongdev
- License: mit
- Created: 2019-10-22T02:33:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-27T03:11:09.000Z (over 5 years ago)
- Last Synced: 2025-02-13T22:23:49.529Z (11 months ago)
- Topics: filesystem, mkdirp, rmdir
- Language: JavaScript
- Homepage: https://npmjs.org/tiny-file
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## tiny-file
> Tiny file utils for Node.js
[](https://npmjs.org/tiny-file)
### Installation
```bash
$ npm install tiny-file
```
### Example
```js
const { mkdir, rmdir } = require('tiny-file');
(async function() {
await mkdir('A/B/C/D');
await rmdir('A');
console.log('Done!');
})();
```
### Contributing
- Fork this Repo first
- Clone your Repo
- Install dependencies by `$ npm install`
- Checkout a feature branch
- Feel free to add your features
- Make sure your features are fully tested
- Publish your local branch, Open a pull request
- Enjoy hacking <3
### MIT
This work is licensed under the [MIT license](./LICENSE).
---