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

airtap-sauce-browsers

v0.2.2

Published

Get a list of normalized Sauce Labs browsers as browser manifests

Readme

airtap-sauce-browsers

Get a list of normalized Sauce Labs browsers as browser manifests.
Replaces sauce-browsers.

npm status node Travis JavaScript Style Guide

Usage

const asb = require('airtap-sauce-browsers').promise
const manifests = await asb()

console.log(manifests)
const asb = require('airtap-sauce-browsers').callback

asb(function (err, manifests) {
  if (err) throw err

  console.log(manifests)
})

For an example of the output, see expected.json. To match browser names to your own preferred alias, you can use browser-names.

Differences from sauce-browsers

Breaking changes

  • New format
  • Does not perform matching, that's handled by airtap-match-browsers. This just returns a list of all browsers available on Sauce Labs.
  • For mobile browsers, the platform field previously mapped to the host OS (Linux or MacOS) that runs the Android emulator or iOS simulator. It now maps to either Android or iOS.
  • name: android only matches Android Browser. Previously it could match both Android Browser and Chrome for Android. If both were available on a particular Android version then Sauce Labs would pick Chrome for Android. If you want to test in Chrome for Android, you must now use name: and_chr or its more descriptive alias chrome for android.
  • iOS browsers have the name "ios_saf" (iOS Safari) rather than "ipad" or "iphone". For now, Airtap will match the old names for backwards compatibility.

Additions

  • Also includes Appium-only browsers (missing in sauce-browsers) which notably includes Android 7+ and removes the need for a workaround in Airtap.
  • For Android, airtap-sauce-browsers includes both Chrome for Android and Android Browser if available. This is not directly reflected in the Sauce Labs API; airtap-sauce-browsers infers the availability of the extra browser from api_name and version.
  • Adds capabilities for Appium (if a mobile browser), legacy WebDriver (if a desktop browser) and / or W3C WebDriver (if supported by the browser)
  • Includes metadata that says whether the browser needs the "loopback" functionality of Airtap.
  • Includes recommendedBackendVersion for Appium.

Install

With npm do:

npm install airtap-sauce-browsers

License

MIT © 2020-present Vincent Weevers