webview-napi 0.1.5 → 0.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 +146 -27
- package/index.js +52 -52
- package/package.json +2 -2
- package/bindings.linux-x64-gnu.node +0 -0
- package/webview.linux-x64-gnu.node +0 -0
package/README.md
CHANGED
|
@@ -1,14 +1,59 @@
|
|
|
1
1
|
# Desktop Framework (NAPI-RS + Tao + Wry)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<div align="center">
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
A high-performance desktop application framework for Node.js, Deno, and Bun. This library provides native bindings to **Tao** for cross-platform window management and **Wry** for rendering web-based user interfaces.
|
|
10
|
+
|
|
11
|
+
</div>
|
|
4
12
|
|
|
5
13
|
## 🚀 Features
|
|
6
14
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
15
|
+
- **Native Performance**: Built with Rust via NAPI-RS for minimal overhead
|
|
16
|
+
- **Window Management**: Robust window control (positioning, sizing, monitors) powered by Tao
|
|
17
|
+
- **Webview Rendering**: Modern webview integration with IPC support via Wry
|
|
18
|
+
- **Pixel Rendering**: Low-level `PixelRenderer` for software rendering or custom graphics buffers
|
|
19
|
+
- **Event-Driven**: Flexible event loop management for responsive applications
|
|
20
|
+
- **Cross-Platform**: Supports Windows, macOS, Linux, Android, and FreeBSD
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📦 Installation
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Using npm
|
|
28
|
+
npm install webview-napi
|
|
29
|
+
|
|
30
|
+
# Using yarn
|
|
31
|
+
yarn add webview-napi
|
|
32
|
+
|
|
33
|
+
# Using pnpm
|
|
34
|
+
pnpm add webview-napi
|
|
35
|
+
|
|
36
|
+
# Using bun
|
|
37
|
+
bun add webview-napi
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Platform-Specific Requirements
|
|
41
|
+
|
|
42
|
+
**Linux:**
|
|
43
|
+
```bash
|
|
44
|
+
# Debian/Ubuntu
|
|
45
|
+
sudo apt-get install libwebkit2gtk-4.0-dev libappindicator3-dev libsoup2.4-dev
|
|
46
|
+
|
|
47
|
+
# Fedora
|
|
48
|
+
sudo dnf install webkit2gtk3-devel libappindicator-gtk3-devel libsoup-devel
|
|
49
|
+
|
|
50
|
+
# Arch Linux
|
|
51
|
+
sudo pacman -S webkit2gtk libappindicator-gtk3 libsoup
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
**macOS:** No additional dependencies required
|
|
55
|
+
|
|
56
|
+
**Windows:** No additional dependencies required
|
|
12
57
|
|
|
13
58
|
---
|
|
14
59
|
|
|
@@ -16,9 +61,18 @@ A high-performance desktop application framework for Node.js. This library provi
|
|
|
16
61
|
|
|
17
62
|
The framework consists of three main layers:
|
|
18
63
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
64
|
+
```
|
|
65
|
+
┌─────────────────────────────────────────────┐
|
|
66
|
+
│ Application / Event Loop │
|
|
67
|
+
│ (System Event Management) │
|
|
68
|
+
├─────────────────────────────────────────────┤
|
|
69
|
+
│ Window (Tao) │
|
|
70
|
+
│ (Native OS Window Container) │
|
|
71
|
+
├─────────────────────────────────────────────┤
|
|
72
|
+
│ WebView (Wry) │
|
|
73
|
+
│ (Browser Engine & IPC Layer) │
|
|
74
|
+
└─────────────────────────────────────────────┘
|
|
75
|
+
```
|
|
22
76
|
|
|
23
77
|
---
|
|
24
78
|
|
|
@@ -29,7 +83,7 @@ The framework consists of three main layers:
|
|
|
29
83
|
The `Application` class provides a high-level wrapper to get started quickly.
|
|
30
84
|
|
|
31
85
|
```typescript
|
|
32
|
-
import { Application } from '
|
|
86
|
+
import { Application } from 'webview-napi';
|
|
33
87
|
|
|
34
88
|
const app = new Application({
|
|
35
89
|
controlFlow: 0 // Poll
|
|
@@ -43,7 +97,6 @@ const window = app.createBrowserWindow({
|
|
|
43
97
|
});
|
|
44
98
|
|
|
45
99
|
app.run();
|
|
46
|
-
|
|
47
100
|
```
|
|
48
101
|
|
|
49
102
|
### 2. Advanced Manual Control (Builder Pattern)
|
|
@@ -51,7 +104,7 @@ app.run();
|
|
|
51
104
|
For more control, use the `EventLoop`, `WindowBuilder`, and `WebViewBuilder`.
|
|
52
105
|
|
|
53
106
|
```typescript
|
|
54
|
-
import { EventLoopBuilder, WindowBuilder, WebViewBuilder } from '
|
|
107
|
+
import { EventLoopBuilder, WindowBuilder, WebViewBuilder } from 'webview-napi';
|
|
55
108
|
|
|
56
109
|
const eventLoop = new EventLoopBuilder().build();
|
|
57
110
|
const window = new WindowBuilder()
|
|
@@ -64,7 +117,6 @@ const webview = new WebViewBuilder()
|
|
|
64
117
|
.build(eventLoop, "main-view");
|
|
65
118
|
|
|
66
119
|
eventLoop.run();
|
|
67
|
-
|
|
68
120
|
```
|
|
69
121
|
|
|
70
122
|
---
|
|
@@ -82,7 +134,6 @@ webview.on((err, message) => {
|
|
|
82
134
|
|
|
83
135
|
// Send message to Webview
|
|
84
136
|
webview.send("Hello from Node!");
|
|
85
|
-
|
|
86
137
|
```
|
|
87
138
|
|
|
88
139
|
### Webview side (Frontend)
|
|
@@ -90,13 +141,13 @@ webview.send("Hello from Node!");
|
|
|
90
141
|
The framework injects a global handler:
|
|
91
142
|
|
|
92
143
|
```javascript
|
|
144
|
+
// Listen for messages from Node
|
|
93
145
|
window.__webview_on_message__ = (message) => {
|
|
94
146
|
console.log("Message from Node:", message);
|
|
95
147
|
};
|
|
96
148
|
|
|
97
149
|
// Send to Node
|
|
98
150
|
window.ipc.postMessage("Data from Frontend");
|
|
99
|
-
|
|
100
151
|
```
|
|
101
152
|
|
|
102
153
|
---
|
|
@@ -106,32 +157,100 @@ window.ipc.postMessage("Data from Frontend");
|
|
|
106
157
|
If you aren't using a Webview and want to draw pixels directly (e.g., for an emulator or custom UI):
|
|
107
158
|
|
|
108
159
|
```typescript
|
|
109
|
-
import { PixelRenderer, Window } from '
|
|
160
|
+
import { PixelRenderer, Window } from 'webview-napi';
|
|
110
161
|
|
|
111
162
|
const win = new Window();
|
|
112
163
|
const renderer = new PixelRenderer(800, 600);
|
|
113
164
|
|
|
114
165
|
// buffer is a Node.js Buffer containing RGBA data
|
|
115
166
|
renderer.render(win, pixelBuffer);
|
|
116
|
-
|
|
117
167
|
```
|
|
118
168
|
|
|
119
169
|
---
|
|
120
170
|
|
|
121
|
-
##
|
|
171
|
+
## 📂 Examples
|
|
172
|
+
|
|
173
|
+
Check the [`examples/`](examples/) directory for complete working examples:
|
|
174
|
+
|
|
175
|
+
| Example | Description |
|
|
176
|
+
|---------|-------------|
|
|
177
|
+
| [`basic-window-example.ts`](examples/basic-window-example.ts) | Basic window creation |
|
|
178
|
+
| [`basic-webview-example.ts`](examples/basic-webview-example.ts) | Simple webview with URL |
|
|
179
|
+
| [`ipc-example.ts`](examples/ipc-example.ts) | IPC communication |
|
|
180
|
+
| [`html.ts`](examples/html.ts) | Render custom HTML |
|
|
181
|
+
| [`transparency.ts`](examples/transparency.ts) | Transparent window |
|
|
182
|
+
| [`multi-webview.ts`](examples/multi-webview.ts) | Multiple webviews |
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## 🗂 API Reference
|
|
122
187
|
|
|
123
188
|
### Core Classes
|
|
124
189
|
|
|
125
190
|
| Class | Description |
|
|
126
|
-
|
|
127
|
-
| `Application` | High-level entry point for window/app management
|
|
128
|
-
| `EventLoop` | Manages the system event queue and window lifecycle
|
|
129
|
-
| `Window` | Controls native window properties (title, size, decorations)
|
|
130
|
-
| `WebView` | The browser engine component (loads URLs, HTML, IPC)
|
|
131
|
-
| `PixelRenderer` | Tool for rendering raw RGBA buffers to a window
|
|
191
|
+
|-------|-------------|
|
|
192
|
+
| `Application` | High-level entry point for window/app management |
|
|
193
|
+
| `EventLoop` | Manages the system event queue and window lifecycle |
|
|
194
|
+
| `Window` | Controls native window properties (title, size, decorations) |
|
|
195
|
+
| `WebView` | The browser engine component (loads URLs, HTML, IPC) |
|
|
196
|
+
| `PixelRenderer` | Tool for rendering raw RGBA buffers to a window |
|
|
132
197
|
|
|
133
198
|
### Key Utilities
|
|
134
199
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
200
|
+
- `primaryMonitor()`: Get details about the main display
|
|
201
|
+
- `availableMonitors()`: List all connected displays and their resolutions
|
|
202
|
+
- `getWebviewVersion()`: Check the underlying engine version
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## 🔧 Configuration
|
|
207
|
+
|
|
208
|
+
### Window Builder Options
|
|
209
|
+
|
|
210
|
+
```typescript
|
|
211
|
+
const window = new WindowBuilder()
|
|
212
|
+
.withTitle("My App")
|
|
213
|
+
.withInnerSize(1024, 768)
|
|
214
|
+
.withPosition(100, 100)
|
|
215
|
+
.withResizable(true)
|
|
216
|
+
.withDecorations(true)
|
|
217
|
+
.withAlwaysOnTop(false)
|
|
218
|
+
.withVisible(true)
|
|
219
|
+
.build(eventLoop);
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### WebView Builder Options
|
|
223
|
+
|
|
224
|
+
```typescript
|
|
225
|
+
const webview = new WebViewBuilder()
|
|
226
|
+
.withUrl("https://example.com")
|
|
227
|
+
.withTransparent(false)
|
|
228
|
+
.withIncognito(false)
|
|
229
|
+
.build(eventLoop, "webview-id");
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## 📚 Related Projects
|
|
235
|
+
|
|
236
|
+
- [Tao](https://github.com/tauri-apps/tao) - Cross-platform windowing library
|
|
237
|
+
- [Wry](https://github.com/tauri-apps/wry) - WebView rendering library
|
|
238
|
+
- [NAPI-RS](https://github.com/napi-rs/napi-rs) - Node.js API bindings for Rust
|
|
239
|
+
|
|
240
|
+
---
|
|
241
|
+
|
|
242
|
+
## 🤝 Contributing
|
|
243
|
+
|
|
244
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
245
|
+
|
|
246
|
+
1. Fork the repository
|
|
247
|
+
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
|
248
|
+
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
|
249
|
+
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
250
|
+
5. Open a Pull Request
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## 📄 License
|
|
255
|
+
|
|
256
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('webview-napi-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('webview-napi-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.1.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
80
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('webview-napi-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('webview-napi-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.1.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
96
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('webview-napi-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('webview-napi-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.1.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
117
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('webview-napi-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('webview-napi-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.1.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
133
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('webview-napi-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('webview-napi-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.1.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
150
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('webview-napi-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('webview-napi-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.1.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
166
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('webview-napi-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('webview-napi-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.1.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
185
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('webview-napi-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('webview-napi-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.1.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
201
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('webview-napi-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('webview-napi-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.1.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
217
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('webview-napi-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('webview-napi-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.1.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
237
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('webview-napi-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('webview-napi-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.1.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
253
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('webview-napi-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('webview-napi-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.1.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
274
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('webview-napi-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('webview-napi-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.1.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
290
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('webview-napi-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('webview-napi-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.1.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
308
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('webview-napi-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('webview-napi-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.1.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
324
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('webview-napi-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('webview-napi-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.1.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
342
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('webview-napi-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('webview-napi-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.1.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
358
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('webview-napi-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('webview-napi-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.1.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
376
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('webview-napi-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('webview-napi-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.1.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
392
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('webview-napi-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('webview-napi-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.1.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
410
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('webview-napi-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('webview-napi-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.1.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
426
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('webview-napi-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('webview-napi-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.1.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
443
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('webview-napi-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('webview-napi-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.1.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
459
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('webview-napi-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('webview-napi-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.1.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
479
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('webview-napi-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('webview-napi-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.1.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
495
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('webview-napi-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('webview-napi-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.1.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
511
|
+
if (bindingPackageVersion !== '0.1.6' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.6 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webview-napi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Robust cross-platform webview library for Node.js written in Rust. It also works with deno and bun.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -101,4 +101,4 @@
|
|
|
101
101
|
"useTabs": false
|
|
102
102
|
},
|
|
103
103
|
"packageManager": "bun@1.3.5"
|
|
104
|
-
}
|
|
104
|
+
}
|
|
Binary file
|
|
Binary file
|