webview-nodejs v0.0.9
webview-nodejs
A Node.js binding to webview, a tiny cross-platform webview library to build modern cross-platform desktop GUIs using WebView2, WebKit and WebKitGTK.
Getting Started
- Install via npm
npm i webview-nodejs
- Import and use webview
const webview = require('webview-nodejs');
let w = new webview.Webview(true);
w.title("Hello");
w.size(600,600,0);
w.navigate("https://example.com");
w.dispatch(()=>{
w.title("World")
});
w.bind("increment", (w,num,inc)=>{
w.title()
return num + inc;
});
w.show();
Help
- API Docs: webview.d.ts
Supported Platforms
- win32 x64
- linux x64
- osx x64
- osx aarch64
Contribution
All suggestions, pull requests, issues and other contributions are welcome and appreciated.
Credits
Project | License |
---|---|
webview | MIT |
node-ffi-napi | MIT |
Microsoft Webview2 | Microsoft WebView2 License |
libs are from webview_deno
License
Copyright 2022 Winterreisender.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
SPDX short identifier: Apache-2.0
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago