
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
airtap-system
Advanced tools
Browser provider for locally installed browsers. List and run browsers on your machine. Supports Chrome, Chromium, Firefox, IE, Edge, Brave, Opera and Safari, on Linux, Mac & Windows, with cross-platform headless mode on Chromium, Chrome, Edge, Brave and Firefox.
const System = require('airtap-system')
const system = new System()
// Get a list of desired browsers
const wanted = [{ name: 'firefox', version: 79 }]
const manifests = await system.manifests(wanted)
// Instantiate a browser
const target = { url: 'http://localhost:3000' }
const browser = system.browser(manifests[0], target)
await browser.open()
If you just want to open a single browser:
const browser = await system.open('chrome', 'https://example.com', {
headless: false
})
Or find a single browser:
const manifest = await system.find({
name: 'chrome',
channel: 'canary',
supports: { headless: true }
})
providers:
- airtap-system
browsers:
- name: firefox
version: 79
- name: chrome
This provider also exposes a supports property to match on:
browsers:
- name: chrome
supports:
headless: true
As well as a release channel and (Windows-only) arch:
browsers:
- name: chrome
channel: beta
- name: firefox
channel: nightly
- name: ie
arch: i386
System()Constructor. Returns an instance of browser-provider.
headless (boolean, default true if supported): run in headless mode.In Airtap these can be set like so:
browsers:
- name: chrome
options:
headless: false
With npm do:
npm install airtap-system
MIT © 2020-present Airtap contributors
FAQs
Browser provider for locally installed browsers
The npm package airtap-system receives a total of 53 weekly downloads. As such, airtap-system popularity was classified as not popular.
We found that airtap-system demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.