I cannot figure out how to show the open file dialog from Electron.
When I use the provided example I get an error:
Error: Cannot find module 'electron' from '/Users/michaelcalkins/Code/codesketcher/assets/js'
I’m using browserify to build the app anything I try just generates errors.
Gulpfile contents:
var elixir = require('laravel-elixir')
elixir.config.assetsPath = 'assets'
elixir(function(mix) {
mix.sass('app.scss', 'dist/css')
.browserify('app.js', 'dist/js')
})