fs-extra-promise-es6
v0.1.1
Published
An ES6 promise adapter for fs-extra for use with ES7 async/await
Downloads
7,428
Readme
fs-extra-promise-es6
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