win_webview2 1.1.9 → 1.1.10
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 +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@ npm install win_webview2
|
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
|
|
17
18
|
## Interactive Project Management
|
|
18
19
|
The win_webview2 CLI is designed to be your single point of control for the entire development lifecycle.
|
|
19
20
|
## 1. Scaffolding (First time)
|
|
@@ -23,6 +24,12 @@ To download the boilerplate and set up your project, simply run:
|
|
|
23
24
|
npx win_webview2
|
|
24
25
|
```
|
|
25
26
|
|
|
27
|
+
or
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
npx wwv
|
|
31
|
+
```
|
|
32
|
+
|
|
26
33
|
## 2. Develop, Watch, and Build
|
|
27
34
|
After the initial setup, you don't need to remember complex commands. Just run the same command again:
|
|
28
35
|
|
|
@@ -32,6 +39,12 @@ After the initial setup, you don't need to remember complex commands. Just run t
|
|
|
32
39
|
npx win_webview2
|
|
33
40
|
```
|
|
34
41
|
|
|
42
|
+
or
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
npx wwv
|
|
46
|
+
```
|
|
47
|
+
|
|
35
48
|
What it does:
|
|
36
49
|
It opens an interactive menu where you can manage your project. You can simply use your arrow keys (↑/↓) to select common tasks:
|
|
37
50
|
|