Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/promise-fs/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/promise-fs/README.md

# Promise FS

Wraps FS methods using Promise

## Installation

You can install this module using Yarn:

```
yarn add promise-fs
```

```
npm install promise-fs
```

## Usage

```js
  import fs from "promise-fs"

  fs.readFile("path/to/file")
    .then(content => console.log(String(content))) // Do something with the content
    .catch(err => console.log(err)) // Handle error
```

# Wrapped methods:

access, readFile, writeFile, close, open, read, write, rename, rmdir, mkdir, readdir, stat, lstat, fstat, appendFile, realpath, link, unlink, readlink, chmod, fchmod, chown, fchown, lchown, fsync, utimes, futimes, ftruncate

# License

MIT