🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

B4n1Web

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

B4n1Web

B4n1Web SDK for .NET - Agentic Browser Engine with bundled binary

nugetNuGet
Version
0.12.3
Version published
Total downloads
1.9K
Maintainers
1
Created
Source

B4n1Web C# SDK

NuGet License: MIT

Ultra-lightweight agentic browser engine with bundled binary.

Install

dotnet add package B4n1Web

Binary is bundled — no separate installation needed.

Quick Start

using B4N1Web;

var browser = new AgentBrowser(new BrowserOptions { Mode = BrowserMode.Light });
var page = browser.Goto("https://example.com");
Console.WriteLine(page.Markdown);
Console.WriteLine($"{page.Links.Count} links found");
Console.WriteLine(page.GetMainContent());
Console.WriteLine(string.Join(", ", page.FindLinksByText("github")));
browser.Close();

Async

using B4N1Web;

var browser = new AgentBrowser();
var page = await browser.GotoAsync("https://example.com");
Console.WriteLine(page.Markdown);
browser.Close();

Browser Modes

new AgentBrowser(new BrowserOptions { Mode = BrowserMode.Light });  // default
new AgentBrowser(new BrowserOptions { Mode = BrowserMode.JS });
new AgentBrowser(new BrowserOptions { Mode = BrowserMode.Render });

Security

var shield = new SecurityShield();
shield.MarkDomain("evil.com", isSafe: false);
var result = shield.IsUrlSafe("https://evil.com");
// result.IsSafe, result.NeedsApiCheck

Version

SDK: 0.9.8 | Binary: 0.9.6 (bundled)

Built by B4N1 with ❤️ · All rights reserved.

Keywords

browser

FAQs

Package last updated on 08 Jul 2026

Did you know?

Socket

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.

Install

Related posts