0.0.9 • Published 3 years ago

webview-nodejs v0.0.9

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

webview-nodejs

npm last commit license npm type definitions

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

  1. Install via npm
npm i webview-nodejs
  1. 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

Supported Platforms

  • win32 x64
  • linux x64
  • osx x64
  • osx aarch64

Contribution

All suggestions, pull requests, issues and other contributions are welcome and appreciated.

Credits

ProjectLicense
webviewMIT
node-ffi-napiMIT
Microsoft Webview2Microsoft 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

0.4.3

1 year ago

0.4.2

1 year ago

0.4.1

2 years ago

0.3.0

2 years ago

0.4.0

2 years ago

0.2.5

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.4

2 years ago

0.1.4-dev.1

3 years ago

0.1.4

3 years ago

0.1.5

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago