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 🙏

© 2026 – Pkg Stats / Ryan Hefner

was-checker

v0.4.2

Published

Check if your domain passes WAS requirements.

Readme

WAS Checker

Check if your domain passes WAS requirements.

Contents

How to use in terminal

Run the following command:

npx was-checker <domain>

How to use in your project

Coming soon

Troubleshooting

This section provides solutions to common issues when using WAS Checker.

Missing shared libraries

The missing shared libraries error most commonly occurs on "lightweight" Linux systems (e.g. Arch, Alpine or containerized environments), where a browser and/or required system libraries are not installed or cannot be found.

On Debian based systems, run the following command to install a compatible browser and all necessary dependencies. This should resolve the issue:

npx puppeteer browsers install chrome --install-deps

On other Linux systems, installing the chromium package along with its dependencies will usually work as well.

WAS Checker will most likely not work on Alpine Linux, even with chromium installed. This is due to Puppeteer — the browser automation tool used by WAS Checker — being unstable or non-functional on Alpine. The root cause is most likely Alpine’s use of the musl libc C library instead of the more common glibc library. While some online threads suggest workarounds — like installing a bunch of packages and running Puppeteer with --no-sandbox — this is not recommended by the Puppeteer team and will not be supported in WAS Checker, therefore Alpine Linux is not recommended.

Running as root

WAS Checker relies on Puppeteer, which in turn uses a headless Chromium browser. Chromium does not allow running as the root user unless the --no-sandbox option is used — but this introduces security risks and is not recommended by the Puppeteer team. Because of this, WAS Checker does not support running as root.

Please switch to a non-root user, or alternatively, try running WAS Checker in Docker.

No usable sandbox

This is a common issue on systems running Ubuntu 23.10 or newer, where there is a new AppArmor profile that applies restrictions to Chrome for Testing binaries (the ones used by Puppeteer). See more details here: https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu

There are a few possible solutions to this. The most reliable and relatively safe option is to create a new AppArmor profile that applies specifically to binaries used by Puppeteer. The risks and tradeoffs are explained here.

You can apply this solution by running the following snippet in your terminal:

export PPTR_CHROME_BUILD_PATH=/@{HOME}/.cache/puppeteer/chrome/**/chrome
cat | sudo tee /etc/apparmor.d/puppeteer-chrome-dev-builds <<EOF
abi <abi/4.0>,
include <tunables/global>

profile chrome $PPTR_CHROME_BUILD_PATH flags=(unconfined) {
  userns,

  # Site-specific additions and overrides. See local/README for details.
  include if exists <local/chrome>
}
EOF
sudo service apparmor reload  # reload AppArmor profiles to include the new one

Alternatives

If you are unable to run WAS Checker and the Troubleshooting section does not resolve your issue, you can try one of the following alternatives to run the tool.

Running WAS Checker in Docker

If you have Docker installed, running WAS Checker in a container should work on most systems. However, certain issues — such as the No Usable Sandbox problem on Ubuntu and other AppArmor-enabled systems — have been known to persist.

You can run WAS Checker in your terminal by using the following command (Replace <domain> with your domain):

docker run --rm ghcr.io/puppeteer/puppeteer:24.6.0 npx --yes --no-update-notifier was-checker <domain>

If you are using WAS Checker as an npm dependency in a project, you can build a Docker image based on ghcr.io/puppeteer/puppeteer:24.6.0 and copy your code into it. This should allow it to run reliably.

Online WAS Checker tool

Coming soon