0.1.1 • Published 8 years ago

fs-extra-promise-es6 v0.1.1

Weekly downloads
449
License
MIT
Repository
github
Last release
8 years ago

fs-extra-promise-es6

Build Status

An ES6 promise adapter for fs-extra for use with ES7 async/await,

Installing

fs-extra-promise-es6 is available as an npm package.

Usage

import * as fse from 'fs-extra-promise-es6';

async function run() {
  console.log(await fse.readJson('package.json'));
}
run();

Development

Getting Started

The application requires the following external dependencies:

  • Node.js

The rest of the dependencies are handled through:

npm install

Run tests with:

npm test