lemanschik / webview-nodejs

A Node.js binding to webview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webview-nodejs

npm type definitions npm version npm (tag) npm bundle size (version) npm download last commit license FOSSA Status

English | 中文(简体)

A Node.js binding and wrapper for webview, a tiny cross-platform webview library to build modern cross-platform desktop GUIs using WebKit (Gtk/Cocoa) and Edge (Windows).

screenshot

Getting Started

  1. Prerequisites

Node.js >= 12.22.0
Windows: Webview 2 Runtime
Linux: webkitgtk2

  1. Install webview-nodejs
npm install webview-nodejs@0.1.3
# webview-nodejs@0.2 does not work with Linux and macOS, this is still to be solved.
  1. Import and use webview
const { Webview } = require('webview-nodejs');

let w = new Webview();
w.title("Hello World");
w.size(800,600);
w.navigate("https://example.com");
w.show();

For more examples like interacting between Node.js and webview and more detailed instructions, see Tutorial.

Help

Supported Platforms

Build-in support:

  • win32 x64
  • linux x64
  • osx x64 and aarch64

By loading lib manully, other architectures could be supported, you could find them here. Only windows-x64 and linux-x64 are tested.

For more information, see Prerequisites.

Contribution

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

Developer Certificate of Origin Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.

Developer's Certificate of Origin 1.1

By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
    have the right to submit it under the open source license
    indicated in the file; or
(b) The contribution is based upon previous work that, to the best
    of my knowledge, is covered under an appropriate open source
    license and I have the right under that license to submit that
    work with modifications, whether created in whole or in part
    by me, under the same open source license (unless I am
    permitted to submit under a different license), as indicated
    in the file; or
(c) The contribution was provided directly to me by some other
    person who certified (a), (b) or (c) and I have not modified
    it.
(d) I understand and agree that this project and the contribution
    are public and that a record of the contribution (including all
    personal information I submit with it, including my sign-off) is
    maintained indefinitely and may be redistributed consistent with
    this project or the open source license(s) involved.

Credits

Project License
webview MIT
koffi MIT
Microsoft Webview2 BSD-style

This project is inspired by webview_deno

License

Copyright 2022-2023 Winterreisender and other contributors.

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.

About

A Node.js binding to webview

License:Apache License 2.0


Languages

Language:TypeScript 62.1%Language:JavaScript 37.9%