@devisfuture/electron-modular 1.1.5 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,12 @@ Instead of wrestling with service initialization order or managing global state,
|
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
+
## Example App
|
|
36
|
+
|
|
37
|
+
A small example app demonstrating how to use this package is available at [trae-op/quick-start_react_electron-modular](https://github.com/trae-op/quick-start_react_electron-modular). It contains a minimal React + Electron project that shows module registration, IPC handlers and window managers in action — check its README for setup and run instructions.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
35
41
|
## Installation
|
|
36
42
|
|
|
37
43
|
Install with your package manager:
|
|
@@ -109,10 +115,6 @@ app.on("ready", async () => {
|
|
|
109
115
|
|
|
110
116
|
---
|
|
111
117
|
|
|
112
|
-
## Example App
|
|
113
|
-
|
|
114
|
-
A small example app demonstrating how to use this package is available at [trae-op/quick-start_react_electron-modular](https://github.com/trae-op/quick-start_react_electron-modular). It contains a minimal React + Electron project that shows module registration, IPC handlers and window managers in action — check its README for setup and run instructions.
|
|
115
|
-
|
|
116
118
|
## Module Structure
|
|
117
119
|
|
|
118
120
|
An example of each module's structure, but you can use your own:
|
package/package.json
CHANGED