@devisfuture/electron-modular 1.1.5 → 1.1.7
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 +10 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Package Documentation
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="./illustration.png" alt="electron-modular illustration" width="640" />
|
|
5
|
+
</p>
|
|
6
|
+
|
|
3
7
|
[](https://www.npmjs.com/package/@devisfuture/electron-modular) [](https://www.npmjs.com/package/@devisfuture/electron-modular) [](https://github.com/trae-op/electron-modular/actions/workflows/ci.yml) [](https://codecov.io/gh/trae-op/electron-modular) [](https://bundlephobia.com/package/@devisfuture/electron-modular) [](https://github.com/trae-op/electron-modular/blob/main/LICENSE) [](https://www.typescriptlang.org/)
|
|
4
8
|
|
|
5
9
|
## Overview
|
|
@@ -32,6 +36,12 @@ Instead of wrestling with service initialization order or managing global state,
|
|
|
32
36
|
|
|
33
37
|
---
|
|
34
38
|
|
|
39
|
+
## Example App
|
|
40
|
+
|
|
41
|
+
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.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
35
45
|
## Installation
|
|
36
46
|
|
|
37
47
|
Install with your package manager:
|
|
@@ -109,10 +119,6 @@ app.on("ready", async () => {
|
|
|
109
119
|
|
|
110
120
|
---
|
|
111
121
|
|
|
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
122
|
## Module Structure
|
|
117
123
|
|
|
118
124
|
An example of each module's structure, but you can use your own:
|
package/package.json
CHANGED