From 8f7473bef544b5119df30adcbecd6a197c54f3d0 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 21 Nov 2016 13:54:11 +0000 Subject: [PATCH] Add fs-promise as fs-extra-promise alternative --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f9cc5d43..3173b086 100644 --- a/README.md +++ b/README.md @@ -494,7 +494,10 @@ var Promise = require('bluebird') var fs = Promise.promisifyAll(require('fs-extra')) ``` -Or you can use the package [`fs-extra-promise`](https://github.com/overlookmotel/fs-extra-promise) that marries the two together. +Or you can use a dedicated package: + +- [`fs-extra-promise`](https://github.com/overlookmotel/fs-extra-promise) uses Bluebird. +- [`fs-promise`](https://github.com/kevinbeaty/fs-promise) uses Any-Promise and also covers [`mz/fs`](https://github.com/normalize/mz/blob/master/fs.js). ### TypeScript