I need write some data in the file, using FS module (fs.writeFile). My stack is webpack + react + redux + electron.
The first problem was: Cannot resolve module ‘fs’. I tried to use
JavaScript
x
14
14
1
target: "node",
2
---
3
node: {
4
global: true,
5
fs: "empty",
6
}
7
---
8
resolve: {
9
root: path.join(__dirname),
10
fallback: path.join(__dirname, 'node_modules'),
11
modulesDirectories: ['node_modules'],
12
extensions: ['', '.json', '.js', '.jsx', '.scss', '.png', '.jpg', '.jpeg', '.gif']
13
},
14
After several attempts, the problem is resolved ( node: {fs: “empty”} ). But then there was a second problem: screenshot.
JavaScript
1
8
1
//In method componentDidMount (React)
2
console.log('fs', fs);
3
console.log('typeOf', typeof fs.writeFile);
4
5
//By clicking on the button
6
console.log(fs);
7
console.log(typeof fs.writeFile);
8
You can see, that fs is empty object, and method writeFile no exists. I tried to change the webpack’s configuration.
JavaScript
1
5
1
const path = require('path');
2
const fs = require('fs');
3
const webpack = require("webpack");
4
console.log(fs);
5
In this case fs is not empty.
How to solve this problem? Any ideas?
Advertisement
Answer
Problem is solved.
Need use in electron app (where you add the bundle):
JavaScript
1
4
1
var remote = require('electron').remote;
2
var electronFs = remote.require('fs');
3
var electronDialog = remote.dialog;
4