Skip to content
Advertisement

Requiring electron dialog from render process is undefined

I am using electron and am trying to open a file browser when a user clicks on button. From the render process I am trying to include the elctron.dialog package like this.

JavaScript

However the result from the console log is undefined

I am absolutely sure I am in the rendering process so I am not sure why this is not working. The documentation suggests that this is the correct way of doing things but it appears to not be working.

This is my package.json file

JavaScript

This is my main.js file

JavaScript

this is the rendered process file

JavaScript

This is the console

Is this incorrect?

Advertisement

Answer

After a few hours of looking into it someone else pointed out to me that the “new” way (4/15/16) of doing this is the following.

JavaScript

You must require remote and then from remote require dialog. It looks like you no longer need to require electron

Advertisement