electron-fs-extra
v1.0.0
Published
use fs-extra at electron render process
Downloads
5
Readme
electron-fs-extra
use fs-extra at electron render process
how to use
the same with fs-extra
import fs from 'electron-fs-extra';
async readFile(filePath) {
return await fs.readFile(filePath)
}
readFile(filePath);
Note
must install fs-extra first at project
$ yarn add fs-extra
# or
$ npm install fs-extra -S