Skip to content

Bun bindings for webview, a tiny library for creating web-based desktop GUIs.

License

Notifications You must be signed in to change notification settings

tr1ckydev/webview-bun

Repository files navigation

webview-bun

bun bindings for webview

Webview is a tiny cross-platform library to make web-based GUIs for desktop applications.

Installation

Platforms supported:

  • windows-x64
  • linux-x64
  • macos-x64
  • macos-arm64
Click here for instructions on linux Install the webkit dependency.

Debian-based systems:

  • Development: apt install libgtk-3-dev libwebkit2gtk-4.0-dev
  • Production: apt install libgtk-3-0 libwebkit2gtk-4.0-37

Fedora-based systems:

  • Development: dnf install gtk3-devel webkit2gtk4.0-devel
  • Production: dnf install gtk3 webkit2gtk4.0

Arch-based systems:

yay -S webkit2gtk

Click here for instructions on windows Must have the WebView2 runtime installed on the system for any version of Windows before Windows 11.
bun i webview-bun

Example

import { Webview } from "webview-bun";

const html = `
<html>
    <body>
        <h1>Hello from bun v${Bun.version} !</h1>
    </body>
</html>
`;

const webview = new Webview();

webview.setHTML(html);
webview.run();

For more examples, browse the examples folder of this repository.

Single-file executable

You can compile a single self-sufficient executable file for your webview app.

For example, let's create a single executable for the above Todo App. Clone this repository and run,

bun build --compile --minify --sourcemap ./examples/todoapp/app.ts --outfile todoapp

Tip

By default, a terminal window will also open in the back when double-click opening the executable in Windows and macOS.

To hide it in Windows:

Download hidecmd.bat from this repository and save in the same folder as the binary. Open the terminal there and execute,

.\hidecmd.bat todoapp.exe

To hide it in macOS:

Add the extension .app in the end of the above bun build command.

Cross-platform compilation

Bun now supports cross-compilation of single executable binaries. To cross compile your webview app for a different platform run,

bun build --compile --target=bun-windows-x64 --minify --sourcemap ./examples/todoapp/app.ts --outfile todoapp

Supported targets are: bun-linux-x64, bun-windows-x64, bun-darwin-x64, bun-darwin-arm64.

Documentation

Refer to the comments in the source code for full documentation.

Development

Important

If you are on Windows, you need C++ Build Tools.

Building

  • Clone the repository along with the webview submodule.

    git clone --recurse-submodules --remote-submodules https://github.com/tr1ckydev/webview-bun.git
    cd webview-bun
    bun i
  • Build the library for your platform.

    bun run build

The compiled library file(s) can be found inside the build folder.

Running

Tip

To use your own webview library, set the WEBVIEW_PATH environment variable with the path to your webview shared library file.

Run the following example to see it in action.

bun run examples/basic.ts

For more examples, browse the examples folder of this repository.

Important note for Windows users

The libwebview.dll is sometimes detected as a potential malware by the Windows Defender which is a false positive and is safe to restore.

If this concerns you, feel free to compile the library yourself from source using the instructions provided above.

Credits

This repository is a port of webview_deno with various changes to work with the bun runtime and new windows build script to compile the latest webview.

License

This repository uses MIT license. See LICENSE for full license text.