Electronic + Vue custom Click to maximize, minimize and close window events

First, let's briefly understand the process types of Electron - rendering process and main process Main process: Electron runs package JSON's main script process. Rendering process: a process that runs on a web page. An Electron application has and has only one main process. The script running in the main process presents the user interface by ...

Posted by ianhull on Fri, 04 Mar 2022 08:50:26 +0100

Without networking, use electron builder to quickly package all platform applications

prefaceElectron is becoming increasingly popular because it is easy to use and has good support for various operating platforms.Today, I'd like to share my experience on how to use a set of code to quickly package and generate installation packages for mainstream platforms.Project installationFirst, use what I introduced earlier Tips for improv ...

Posted by pacome on Thu, 03 Mar 2022 15:33:23 +0100

Without networking, use electron builder to quickly package all platform applications

prefaceElectron is becoming increasingly popular because it is easy to use and has good support for various operating platforms.Today, I'd like to share my experience on how to use a set of code to quickly package and generate installation packages for mainstream platforms.Project installationFirst, use what I introduced earlier Tips for improv ...

Posted by luiddog on Thu, 03 Mar 2022 15:18:35 +0100

electron5+vue3.0 build a desktop application

Before, because the project needs to do a desktop application, I learned some basic knowledge on bilibili and then referred to it[ https://zhuanlan.zhihu.com/p/75764907 ]This blog has built a desktop price query application of electron+vue. This article records the construction process and some problems encountered I Fundamentals of electron ...

Posted by predhtz on Thu, 10 Feb 2022 04:32:16 +0100

Client development (Electron) awareness window 2

Dear, Hello, I'm "front-end Xiaoxin", 😇 He has been engaged in front-end development and Android development for a long time, is keen on technology, and goes farther and farther on the road of programmingElectron is a framework for building desktop applications using JavaScript, HTML, and CSS. Embed Chromium and node JS to binary ele ...

Posted by chadrt on Mon, 07 Feb 2022 21:27:34 +0100

Packaging Electron program with Electron builder

preface After the development of Electron code, if you want to put it into production environment, you must go through a key step - packaging. Use it on MacOS today electron-builder Make a record of the process of packaging Electron application. Why pack My last article< Debugging Electron main process code with VSCode >This paper introd ...

Posted by petromanian on Thu, 20 Jan 2022 13:59:13 +0100

Packaging Electron program with Electron builder

preface After the development of Electron code, if you want to put it into production environment, you must go through a key step - packaging. Use it on MacOS today electron-builder Make a record of the process of packaging Electron application. Why pack My last article< Debugging Electron main process code with VSCode >This paper i ...

Posted by LikPan on Thu, 20 Jan 2022 12:56:16 +0100

Vue electron ic automatic update / electronic manual update

Vue electron automatic update / electron manual update Uncaught TypeError: fs.existsSync is not a function All posts are the same. I don't want to try. I walked through all the holes in this partial article. Direct code The main problem is const electron = require('electron ') ipcRenderer can be used without reference When this problem is so ...

Posted by rpanning on Wed, 12 Jan 2022 10:10:05 +0100

vue project generates desktop application through Electron

The main method used in this paper is to package your own Vue project and put it into the official demo file of electron. After modifying the corresponding configuration, generate an exe file. 1, Installation 1. Download the official demo of electron git clone https://github.com/electron/electron-quick-start 2. Install cnpm It's not ...

Posted by astoller on Thu, 23 Dec 2021 14:22:21 +0100

Electron incremental update

Since writing the electron series, many students have asked some questions, mainly for the incremental update of electron. I wrote it before Incremental update (II) However, the Windows mode requires the administrator permission package, which is not very elegant. Moreover, if you want to drag the function, due to the permission problem, the dr ...

Posted by tjmbc on Mon, 20 Dec 2021 09:32:26 +0100