项目作者: song940

项目描述 :
Tiny file utils for Node.js
高级语言: JavaScript
项目地址: git://github.com/song940/tiny-file.git
创建时间: 2019-10-22T02:33:16Z
项目社区:https://github.com/song940/tiny-file

开源协议:MIT License

下载


tiny-file

Tiny file utils for Node.js

tiny-file

Installation

  1. $ npm install tiny-file

Example

  1. const { mkdir, rmdir } = require('tiny-file');
  2. (async function() {
  3. await mkdir('A/B/C/D');
  4. await rmdir('A');
  5. console.log('Done!');
  6. })();

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.