UNPKG

camoufox

Version:

JavaScript port of Camoufox - a tool for Firefox anti-fingerprinting and browser automation.

10 lines (9 loc) 279 B
import { firefox } from 'playwright-core'; import { launchOptions } from './utils.js'; export async function launchServer({ port, ws_path, ...options }) { return firefox.launchServer({ ...await launchOptions(options), port, wsPath: ws_path, }); }