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

qbrt

v0.2.5

Published

a Mozilla runtime

Readme

Activity Level Stability Travis Status Taskcluster Status Greenkeeper Status

qbrt: CLI to a Gecko desktop app runtime

qbrt is a command-line interface to a Gecko desktop app runtime. It's designed to simplify the process of building and testing desktop apps using Gecko.

Usage

Install it via npm:

npm install -g qbrt

Installing it also installs a Gecko runtime (currently a nightly build of Firefox, but in the future it could be a stable build of Firefox or a custom Gecko runtime). Its simplest use is then to invoke the run command with a URL:

qbrt run https://eggtimer.org/

Which will start a process and load the URL into a native window:

URLs loaded in this way don't have privileged access to the system. They're treated as web content, not application chrome.

To load a desktop app with system privileges, point qbrt at a local directory containing a package.json file and main script:

qbrt run path/to/my/app/

For an example, clone qbrt's repo and try its example/ app, which will start a process and load the app into a privileged context, giving it access to Gecko's APIs for opening windows and loading web content along with system integration APIs for file manipulation, networking, process management, etc.:

git clone https://github.com/mozilla/qbrt.git
qbrt run qbrt/example/

(Another good example is the shell app that qbrt uses to load URLs.)

To package an app for distribution, invoke the package command, which creates a platform-specific package containing both your app's resources and the Gecko runtime:

qbrt package path/to/my/app/

Caveats

While qbrt itself is written in Node.js, it doesn't provide Node.js APIs to apps. Unprivileged URLs have access to Web APIs, and privileged apps also have access to Gecko's APIs.

qbrt doesn't yet support runtime version management (i.e. being able to specify which version of Gecko to use, and to switch between them). At the time you install it, it downloads the latest nightly build of Firefox. (You can update that nightly build by reinstalling qbrt.)

The packaging support is primitive. qbrt creates a shell script (batch script on Windows) to launch your app, and it packages your app using a platform-specific format (ZIP on Windows, DMG on Mac, and tar/gzip on Linux). But it doesn't set icons nor most other package meta-data, and it doesn't create auto-installers nor support signing the package.

In general, qbrt is immature and unstable! It's appropriate for testing, but it isn't yet mature and stable enough for you to ship apps with it.

Contributing

Contributions of all kinds are welcome! As are all contributors. We only ask that you treat other contributors with care and respect and observe Mozilla's Community Participation Guidelines.