Hello,
Since Node v10.1.0, this package throws the warning (node:84425) ExperimentalWarning: The fs.promises API is experimental.
Test case:
var fs = require('mz/fs')
fs.exists(__filename).then(function (exists) {
if (exists) // do something
console.log('it exists') // Works
})