Electron main process and rendering process
In this section, we will learn what is the main process and the rendering process, what is the difference between the main process and the rendering process, and the communication between the main process and the rendering process. Let's take a look at the concept of process. Process is a runniUTF-8...
Posted by parms on Mon, 17 May 2021 05:59:12 +0930
With the combination of Angular and Electron, the development efficiency is directly increased
The company uses Angular+Electron for PC application development, and uses the open source project angular electron as the template( https://github.com/maximegris/angular-electron )However, with the progress of the project, I was tortured by the following pain points: Using tsc to compile the cUTF-8...
Posted by LoneTraveler on Sun, 27 Jun 2021 05:25:33 +0930
Electron native menu
In Electron, html can be used to develop the contents displayed therein, and some menus can also be drawn in the form of html. When clicking, relevant APIs can be called. Although it is convenient to build, the style can be adjusted arbitrarily. But it is actually a simulated menu, not a nativeUTF-8...
Posted by buzz on Thu, 09 Dec 2021 21:23:30 +1030
Electron packaging configuration + package Common configuration items of JSON and their usage analysis
Electron Build configuration Basic configuration { "name": "demo01", //entry name "version": "0.0.2", //Version number "author": "Look baby Deng", //author "description": "xxx",//Project description "main": "main.js", "scripts": {//Use the shortcut script command to run the default command relUTF-8...
Posted by pendragonf on Tue, 21 Dec 2021 07:25:49 +1030
Electron quick start
introduce Building cross platform desktop applications using JavaScript, HTML and CSS Official documents Recommended tutorials: Two hour introduction to dark horse Electron install Initialize package JSON file npm init Install the Electron npm install electron --save-dev or cnpm install electroUTF-8...
Posted by agriz on Mon, 03 Jan 2022 06:39:22 +1030
Electronic + Vue writing desktop gadgets
Electronic + Vue desktop gadget (I) Suddenly interested in desktop applications, I learned that a small thing was written on the following electron. Let's see the effect first: Effect on desktop: Can freely adjust the position and zoom in and out: At present, only the clock plug-in is implementUTF-8...
Posted by Dirtbagz89 on Mon, 17 Jan 2022 07:01:37 +1030
Packaging Electron program with Electron builder
prefaceAfter 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 packMy last article< Debugging Electron main proUTF-8...
Posted by fydwell on Sat, 22 Jan 2022 14:16:18 +1030
Vue3 + Electron develops image compression desktop application
Electron is not complicated to use for understanding the children's shoes of NodeJS. It needs to focus on understanding the difference and communication between the rendering process and the main process. This article is an online practice, and the process drawing is very clear.The simple underUTF-8...
Posted by koolaid on Fri, 15 Apr 2022 04:05:46 +0930
Set up a simple electron update service and how to configure electron
If you are using electron, you may find that you need to make new changes to the deployed application. To achieve this, you need to set up a server that contains update artifacts so that e-mail can listen to and update when a new version is released. This tutorial will show you how to make yourUTF-8...
Posted by impulse() on Sun, 17 Apr 2022 20:09:15 +0930