I made an electron app with react, but I don't know how to make its MSI file for windows. actually, I know what the problem is, it is because Reac app needs to run on localhost:3000 and after that electron can launch it through mainWindow.loadURL, but the MSI file doesn't work like this, and it doesn't launch it, please help me how to solve this problem note: in development, it works fine because I first run the react app and then the electron app which causes it can load URL from localhost:3000 but when I make its MSI file through the electron packager then it doesn't work
how to make MSI file from electron app that is made by react
592 views Asked by Danial Bayat At
1
There are 1 answers
Related Questions in REACTJS
- ussd reader in Recket Native module
- Teams tab application returns SSO error in mobile Outlook
- Github Pages Deployment deploys a blank page
- Is there any way to glow this bulb image like a real light bulb
- Optimize LCP ReactJs
- Page in React only renders elements after refreshing
- Unable to Post Form Data to MongoDB because of picturepath
- MERN Stack App - User Avatar Upload - 500 Error After Deployment on Render
- Hooks are not supported inside an async component error in nextjs project using useQuery
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- On the server side, it returns undefined but on the client side, logs the values no problem
- Multilevel dropdown with checkboxes in Select component
- TypeScript Error only on big type only when assigned to a variable
- Deployment through app engine, cloud sql database, problem connecting with server code, doesn't connect
- Data is not filtering in props. Showing passdata.map is not a function
Related Questions in ELECTRON
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
- Electron Printing not working on Windows (Works on Mac)
- The "logger" option function in electrion-unhandled threw an error
- methods in contextBridge not working in child window
- Electron loads a wrong file when using menu Window "Reload" - electron: Failed to load URL: file:///
- Handling Memory Allocation and Pointers in Electron between Node.js and C++ DLL
- Change the maximum screen size icon (and variable) by dragging the TitleBar
- Electron with shadcn/vue config (src) confusion
- The installation of the package printed by electron forge failed
- Identrust X Google Cloud HSM X Electron Builder
- When I use electron js and canvas in node js, I get a rebuild module error
- vscode pylance memory limit
- Can I package a third party application installer along with my electron application?
- Packaging failure
- Error in R electricShine::electrify() Error: ! Failed to evaluate glue component {arch} Caused by error: ! object 'arch' not found
Related Questions in ELECTRON-BUILDER
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
- The installation of the package printed by electron forge failed
- Identrust X Google Cloud HSM X Electron Builder
- Can I package a third party application installer along with my electron application?
- Packaging failure
- I packaged my electron-app but a js error occurred in the main process
- npm i failing with electron-builder installation and node version 14.21.X
- electron forge make --- operation not permitted
- Chromium version on Puppeteer build
- Is it possible for Electron builder MacOS codesigning to skip locale files?
- can't import library from file into frontend react (using vite-electron)
- How to run 'sqlite3' after building an exe using electron-builder
- Error executing 'npm run dist': npm ERR! code 1 with electron-builder - Problem with canvas dependencies
- Preserve specific files from auto-update using electron-builder
- How to protect app.asar file after building my electron-app?
Related Questions in ELECTRON-PACKAGER
- The installation of the package printed by electron forge failed
- Can not find module "uiohook-napi" after installation .exe in electron forge
- electron forge make --- operation not permitted
- How can I package tensorflow/tfjs-node in an electron app using electron-forge?
- Getting dropped file path in Electron
- Safely Distributing Electron App with Google API Credentials
- Electron forge macOS app for x64 and arm64
- Running node.js servers on local user's machine when packaged with electron
- getting error while making the electron.js build with nextjs
- Issue with HTTPS Interception in Electron App Using http-mitm-proxy: HTTP Works, HTTPS Does not
- My electron js .dmg file is not containing all the meta data such as package.json
- How to build an electron application for different Windows versions?
- How can we access a user's K8s cluster using kubectl commands via an Electron app?
- Angular electron white screen but loads after reloading
- Electron.js and React. Build contains huge node_modules
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You want to use electron-builder to make an .msi file. The necessary command to build a windows app (once you've gotten your electron app set up) is
electron-builder --windows.If you want to use a template with all of this already set up, you can use
secure-electron-template. Disclaimer: I am the author of this template.