Skip to content
Advertisement

How to use FS module inside Electron.AtomWebPack application?

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

After several attempts, the problem is resolved ( node: {fs: “empty”} ). But then there was a second problem: screenshot.

JavaScript

You can see, that fs is empty object, and method writeFile no exists. I tried to change the webpack’s configuration.

JavaScript

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
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement