@mindw1n/webnative 3.0.0 → 3.0.1
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/package.json +1 -1
- package/readme.md +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindw1n/webnative",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --target=es2020 --outfile=index.js --banner:js=\"#!/usr/bin/env node\" --minify"
|
|
7
7
|
},
|
package/readme.md
CHANGED
|
@@ -32,7 +32,7 @@ webnative build linux
|
|
|
32
32
|
## How it works
|
|
33
33
|
|
|
34
34
|
On desktop, your frontend communicates with a local Node.js backend via IPC.
|
|
35
|
-
On mobile, the same frontend code talks to a remote API or on-device
|
|
35
|
+
On mobile, the same frontend code talks to a remote API or on-device apis.
|
|
36
36
|
webnative handles the switching — you just write your app.
|
|
37
37
|
|
|
38
38
|
## Targets
|
|
@@ -41,12 +41,13 @@ webnative handles the switching — you just write your app.
|
|
|
41
41
|
|----------|--------|
|
|
42
42
|
| Linux (self-contained) | ✅ v1 |
|
|
43
43
|
| Windows (self-contained) | ✅ v2 |
|
|
44
|
-
| Android |
|
|
44
|
+
| Android | ✅ v3 |
|
|
45
45
|
| Windows (setup) | 🔜 v4 |
|
|
46
|
-
| Linux (flatpak | 🔜 v5 |
|
|
46
|
+
| Linux (flatpak) | 🔜 v5 |
|
|
47
47
|
| iOS | 🔜 v6 |
|
|
48
48
|
| macOS | 🔜 v7 |
|
|
49
49
|
|
|
50
50
|
## Requirements
|
|
51
51
|
|
|
52
52
|
- Node.js 22+
|
|
53
|
+
- Docker (sometimes needed for cross-compilation)
|