you are amazing, the fact that you kept up with the process and explained every step and error made me to finally package my electron app after a lot of tutorials that has failed. thank you
@IsraelQuiroz7 ай бұрын
Im so happy this was exactly what you needed :)
@hardynesssensei75716 ай бұрын
Thanks, bro! You're really awesome. I've tried following the tutorials from the official Electron website multiple times and never succeeded, tilI found your video.
@IsraelQuiroz6 ай бұрын
I appreciate it!!!! yeah i know alot of the tutorials online suck and dont work
@saurabhpandey-cg5tr8 ай бұрын
Thats great video . Can you make video how to implement a auto update functionality
@saurabhpandey-cg5tr8 ай бұрын
Actually i have followed all steps but the set up is only about 218 kb and when i open it the error message i get This is a dummy update.exe.If you are seeing this, your build did not correctly replace the IDR_UPDATE_ZIP resource. Command line: '--install.' What to do please help
@joshuaedward68938 ай бұрын
fantastic video.
@IsraelQuiroz8 ай бұрын
Thank you so much! :)
@valkyyri7 ай бұрын
Where can I find a full example of the forge.config.js file? The command that's supposed to create it does nothing for me and I can't find a single example on the internet
@ashwanipandey40488 ай бұрын
I have created the .deb file and .rpm, but at the time of installation in ubuntu it says not supported
@RiddheeGupta-ts2en6 ай бұрын
Is it possible for you to make a tutorial on how to create a Auto Updater for Electron Forge? I am using a Webpack Template for React as my Frontend and I certainly cant find enough doc to make an auto updater, I am constantly going into dead-end.
@IsraelQuiroz6 ай бұрын
I'll make a note of it!
@MdNazimMahmudKhan16 күн бұрын
Very Nice video. Actually i have followed all steps but the set up is only about 218 kb and when i open it the error message i get This is a dummy update.exe.If you are seeing this, your build did not correctly replace the IDR_UPDATE_ZIP resource. Command line: '--install.'
@coding_refactor5 ай бұрын
Thank you i like your video
@joshuaedward68938 ай бұрын
I have an issue though, in my case i have a golang exe file in my project which i run as a process to act like a backend server. When working on dev and running "npm run start" it works fine but after i make me desktop executable for the file the built executable give an error saying. Uncaught exception: error: spawn server.exe ENOENT
@joshuaedward68938 ай бұрын
i don treally understand the error so i dont know exactly what to research about, also in my case I don't have a src folder everything is on the main directory
@salmanahmedkhan39796 ай бұрын
have you found the solution?
@joshuaedward68936 ай бұрын
Yes I found a fix by signing the created artifact or installer
@salmanahmedkhan39796 ай бұрын
@@joshuaedward6893 so have you given the relative path of the server exe?
@daniel492458 ай бұрын
Does the electron version of your app have any advantages compared to the pwa?
@IsraelQuiroz8 ай бұрын
specifically when talking about electron versions i'm not that sure but using PWA v Electron depends on your use case both have pros and cons are you mainly asking about the advantages of Electron vs using PWA? im not really sure about your question
@daniel492458 ай бұрын
@@IsraelQuiroz yes that is the question. Why the hustle of making electron app when creating pwa is much easier
@IsraelQuiroz8 ай бұрын
gotcha thank you for clearing that up! so electron is similiar to PWA but with slight tweaks, Electron actually gets installed on your PC which means it has access to the machine in ways the PWA cant because its "installed" but still is basically running on the browser Electron also is best for Desktop applications that don't care about mobile if you need mobile maybe PWA is the way to go Electron also allows you to create platform specific desktop apps, PWA is just a general solution since it runs in the browser there are differences but both are great to use, just depends on exactly your use case for one or the other. I do agree creating the PWA is super easy but may not always be the best solution