I am writing a NodeJS Electron App to be distributed on all platforms. I have a download button that I would like to pop open a Save As dialog with the file being provided from the server. Does anybody know the best way to do this?
Here are the things I have tried that work when running the node app locally but fail after I have packaged the app with electron-packager:
When running the packaged mac app, the "did-fail-load" event is fired and prevents the Save As dialog from showing. When looking at the network requests, I can see that the file is successfully retrieved from the server. I can't seem to figure out why the "did-fail-load" event is being fired.
It is slowAt its core, an Electron app is a browser but without the user interface of a browser. It is just the renderer, and just like a web app in a regular browser, it uses HTML, CSS and JavaScript to build an interface and provide functionality. Those are a lot of extra layers.
Take a look at this page on the electron docs https://github.com/atom/electron/blob/master/docs/api/dialog.md
There is a section about dialog.showSaveDialog
Then you can use the URL from the save dialog with a function similar to the one below to save it to that location.
session.on('will-download', function(event, item, webContents) {
event.preventDefault();
require('request')(item.getUrl(), function(data) {
require('fs').writeFileSync('/somewhere', data);
});
});
Found on this page https://github.com/atom/electron/blob/master/docs/api/session.md
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With