npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@webui-dev/bun-webui

v2.5.4

Published

Use any web browser as GUI, with Bun in the backend and HTML5 in the frontend.

Readme

Logo

Bun-WebUI v2.5.4 (Beta)

Use any web browser or WebView as GUI, with Bun in the backend and modern web technologies in the frontend, all in a lightweight portable library.

Screenshot

Features

  • Portable (Needs only a web browser or a WebView at runtime)
  • Lightweight (Few Kb library) & Small memory footprint
  • Fast binary communication protocol
  • Multi-platform & Multi-Browser
  • Using private profile for safety
  • Cross-platform WebView

Screenshot

This hello world example is written in Bun using WebUI as the GUI library.

ScreenShot

NPM Installation

npm install @webui-dev/bun-webui

Import Package

import { WebUI } from '@webui-dev/bun-webui';

Minimal Example

import { WebUI } from '@webui-dev/bun-webui';

const myWindow = new WebUI();
myWindow.show('<html><script src="webui.js"></script> Hello World! </html>');
await WebUI.wait();
bun run minimal.ts

More examples

Documentation

CppCon 2019 Presentation

Borislav Stanimirov explained at C++ Conference 2019 (YouTube) how beneficial it is to use the web browser as GUI.

ScreenShot

UI & The Web Technologies

Web application UI design is not just about how a product looks but how it works. Using web technologies in your UI makes your product modern and professional, And a well-designed web application will help you make a solid first impression on potential customers. Great web application design also assists you in nurturing leads and increasing conversions. In addition, it makes navigating and using your web app easier for your users.

Why Use Web Browser?

Today's web browsers have everything a modern UI needs. Web browsers are very sophisticated and optimized. Therefore, using it as a GUI will be an excellent choice. While old legacy GUI lib is complex and outdated, a WebView-based app is still an option. However, a WebView needs a huge SDK to build and many dependencies to run, and it can only provide some features like a real web browser. That is why WebUI uses real web browsers to give you full features of comprehensive web technologies while keeping your software lightweight and portable.

How does it work?

ScreenShot

Think of WebUI like a WebView controller, but instead of embedding the WebView controller in your program, which makes the final program big in size, and non-portable as it needs the WebView runtimes. Instead, by using WebUI, you use a tiny static/dynamic library to run any installed web browser and use it as GUI, which makes your program small, fast, and portable. All it needs is a web browser.

Runtime Dependencies Comparison

| | Tauri / WebView | Qt | WebUI | | ------------------------------- | ----------------- | -------------------------- | ------------------- | | Runtime Dependencies on Windows | WebView2 | QtCore, QtGui, QtWidgets | A Web Browser | | Runtime Dependencies on Linux | GTK3, WebKitGTK | QtCore, QtGui, QtWidgets | A Web Browser | | Runtime Dependencies on macOS | Cocoa, WebKit | QtCore, QtGui, QtWidgets | A Web Browser |

Supported Web Browsers

| Browser | Windows | macOS | Linux | | --------------- | --------------- | ------------- | --------------- | | Mozilla Firefox | ✔️ | ✔️ | ✔️ | | Google Chrome | ✔️ | ✔️ | ✔️ | | Microsoft Edge | ✔️ | ✔️ | ✔️ | | Chromium | ✔️ | ✔️ | ✔️ | | Yandex | ✔️ | ✔️ | ✔️ | | Brave | ✔️ | ✔️ | ✔️ | | Vivaldi | ✔️ | ✔️ | ✔️ | | Epic | ✔️ | ✔️ | not available | | Apple Safari | not available | coming soon | not available | | Opera | coming soon | coming soon | coming soon |

Supported Languages

| Language | v2.4.0 API | v2.5.0 API | Link | | --------------- | --- | -------------- | --------------------------------------------------------- | | Python | ✔️ | not complete | Python-WebUI | | Go | ✔️ | not complete | Go-WebUI | | Zig | ✔️ | not complete | Zig-WebUI | | Nim | ✔️ | not complete | Nim-WebUI | | V | ✔️ | not complete | V-WebUI | | Rust | not complete | not complete | Rust-WebUI | | TS / JS (Deno) | ✔️ | not complete | Deno-WebUI | | TS / JS (Bun) | not complete | not complete | Bun-WebUI | | Swift | not complete | not complete | Swift-WebUI | | Odin | not complete | not complete | Odin-WebUI | | Pascal | not complete | not complete | Pascal-WebUI | | Purebasic | not complete | not complete | Purebasic-WebUI| | - | | | | Common Lisp | not complete | not complete | cl-webui | | Delphi | not complete | not complete | WebUI4Delphi | | C# | not complete | not complete | WebUI4CSharp | | WebUI.NET | not complete | not complete | WebUI.NET | | QuickJS | not complete | not complete | QuickUI | | PHP | not complete | not complete | PHPWebUiComposer |

Supported WebView

| WebView | Status | | --------------- | --------------- | | Windows WebView2 | ✔️ | | Linux GTK WebView | ✔️ | | macOS WKWebView | ✔️ |

License

Licensed under MIT License.

Stargazers

Stargazers repo roster for @webui-dev/bun-webui