
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
@agent-infra/browser
Advanced tools
A tiny Browser Control library based on puppeteer, built for Agent Tars.
graph TD
A[Browser Interface] --> B[Local Browser]
A --> C[Remote Browser]
B --> D[Browser Finder]
B --> E[Browser Adapter]
C --> E
E --> F[Puppeteer Adapter]
F --> G[Browser Control]
npm install @agent-infra/browser
# or
yarn add @agent-infra/browser
# or
pnpm add @agent-infra/browser
import { LocalBrowser } from '@agent-infra/browser';
async function main() {
// Initialize browser
const browser = new LocalBrowser();
try {
// Launch browser
await browser.launch({ headless: false });
// Create new page
const page = await browser.createPage();
// Navigate to URL
await page.goto('https://example.com');
// Take screenshot
await page.screenshot({ path: 'example.png' });
} finally {
// Always close browser
await browser.close();
}
}
Thanks to:
FAQs
agent-infra browser
The npm package @agent-infra/browser receives a total of 4,126 weekly downloads. As such, @agent-infra/browser popularity was classified as popular.
We found that @agent-infra/browser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers 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 Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.