Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2020-12-12 18:53:16
Size: 370
Comment:
Revision 10 as of 2025-12-19 20:30:38
Size: 590
Comment: Cleanup
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

'''`electron(1)`''' is a framework for Node application.
Line 9: Line 11:
== electron-store == == Installation ==
Line 11: Line 13:
A simple data persistence solution for Electron apps, using minimal dependencies. It writes to `config.json` in `app.getPath('userData')`.

If the renderer needs access to the store, try:
Using `npm(1)`:
Line 16: Line 16:
const win = new BrowserWindow({ enableRemoteModule: true }) npm install --save-dev electron
Line 18: Line 18:

----



== Tool Chain ==

 * [[Node/ElectronBuilder|electron-builder]]


== APIs ==

 * [[Node/Electron/App|app]]
 * [[Node/Electron/BrowserWindow|BrowserWindow]]
 * [[Node/Electron/Dialog|dialog]]
 * [[Node/Electron/IpcMain|ipcMain]]
 * [[Node/Electron/IpcRenderer|ipcRenderer]]
 * [[Node/Electron/Menu|Menu]]
 * [[Node/Electron/Shell|shell]]

Electron

electron(1) is a framework for Node application.


Installation

Using npm(1):

npm install --save-dev electron


Tool Chain

APIs


CategoryRicottone

Node/Electron (last edited 2025-12-19 20:30:38 by DominicRicottone)