
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Always-on CDP (Chrome DevTools Protocol) server via WSS for remote browser automation.
Run a persistent Chrome browser on any machine, expose it via Cloudflare Tunnel, and connect from anywhere using Puppeteer.
npx breamer
Or with options:
npx breamer --port 3000 --browser browser.yourdomain.com
| Option | Env Variable | Default | Description |
|---|---|---|---|
-p, --port | PORT | 3000 | HTTP server port |
-c, --chrome-port | CHROME_DEBUG_PORT | 9222 | Chrome remote debugging port |
-t, --tunnel | TUNNEL_HOSTNAME | - | Cloudflare Tunnel hostname for HTTP API |
-b, --browser | BROWSER_HOSTNAME | - | Cloudflare Tunnel hostname for Chrome WebSocket |
--headless | HEADLESS=true | false | Run Chrome in headless mode |
--heap-size | CHROME_HEAP_SIZE_MB | 512 | Chrome V8 heap size limit in MB |
Expose both the HTTP server and Chrome's debug port:
# Terminal 1: HTTP API
cloudflared tunnel --url http://localhost:3000
# Terminal 2: Chrome WebSocket
cloudflared tunnel --url http://localhost:9222
Pass both hostnames to breamer:
npx breamer --tunnel api.yourdomain.com --browser browser.yourdomain.com
GET /Service info.
GET /healthHealth check with browser connection status and metrics:
GET /cdpGet the WebSocket endpoint for browser connection.
import puppeteer from "puppeteer";
// Fetch the CDP endpoint
const res = await fetch("https://api.yourdomain.com/cdp");
const { wsEndpoint } = await res.json();
// Connect to the remote browser
const browser = await puppeteer.connect({
browserWSEndpoint: wsEndpoint,
defaultViewport: null,
});
// Use it!
const page = await browser.newPage();
await page.goto("https://example.com");
import { startServer } from "breamer";
await startServer({
port: 3000,
chromeDebugPort: 9222,
browserHostname: "browser.yourdomain.com",
tunnelHostname: "api.yourdomain.com",
headless: false,
});
ISC
FAQs
Always-on CDP server via WSS for remote browser automation
We found that breamer demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.