Node promisified functions
yarn add @vgm/nodeasync
Walk through directory:
import {walk} from '@vgm/nodeasync';
const main = async () => {
const files = await walk('/root');
console.log(files); // List of files path
const dir = join(tmpdir(), '/one/two/three')
await mkdirpAsync(dir)
}