Skip to content

Commit

Permalink
Updating readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzygemini committed Aug 25, 2017
1 parent fe7e5ff commit 7859401
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# fs-plus
# ezzy-fs
[![Build Status](https://travis-ci.org/ezzygemini/ezzy-fs.svg?branch=master)](https://travis-ci.org/ezzygemini/ezzy-fs)
[![Coverage Status](https://coveralls.io/repos/github/ezzygemini/ezzy-fs/badge.svg?branch=master)](https://coveralls.io/github/ezzygemini/ezzy-fs?branch=master)

An enhancement to the basic fs library
This wrapper enhances the fs module to include additional methods that return promises, rather than passing callbacks.

```javascript
const fs = require('ezzy-fs');

fs.readdirPromise(__dirname)
.then(items => {
// ... handle items
});
```

0 comments on commit 7859401

Please sign in to comment.