Difference between revisions of "Desktop apps/Electron"

From Adam Meola - wiki
Jump to navigation Jump to search
(Created page with "Powerfull Desktop frame work for building desktop apps with HTML, javascript, and CSS! It runs a copy of chromium for the renderer, and a copy of nodeJS for the main process....")
 
 
Line 15: Line 15:
  
  
https://www.electronjs.org/
+
Full and official documentation available at: https://www.electronjs.org/

Latest revision as of 17:41, 2 September 2020

Powerfull Desktop frame work for building desktop apps with HTML, javascript, and CSS!

It runs a copy of chromium for the renderer, and a copy of nodeJS for the main process.

The 2 can communicate with one an other, Node handles system operation and chromium handles the display.


Note:

The overhead of running Chromium and Node is signifigant. If you have concerns over package size or memory footprint, you may want to consider a different option.


Full and official documentation available at: https://www.electronjs.org/