Github · GitHub Repository Radar
lennybase browsernode
🌐 Make websites accessible for AI agents. Automate tasks online with ease.
Stars
1,055
Forks
111
Watchers: 1,055
Language
License: MIT License
Repository Radar Score
31 / 100
Growth
- 7d
- +0
- 30d
- +0
- %
- 0.0%
Not enough metric snapshots yet to chart growth for this repository.
Score breakdown
- popularity 54
- growth 0
- activity 15
- freshness 100
- community 20
Need help integrating this stack?
Our team builds with modern open-source stacks. Tell us what you are shipping.
Get a quote →Browsernode is TypeScript implementation of Browser-use
🌐 Browsernode is the easiest way to connect your AI agents with the browser. ✅ Browsernode is compatible with all of Browser-use APIs and features.
with Node.js (v20.19.4 or higher) and npm
❌ Bun environment , has a Playwright bug.
npm install browsernodeInstall Playwright: Installation | Playwright
npm init playwright@latestplaywright install chromiumAdd your API keys for the provider you want to use to your .env file.
mv .env.example .envOPENAI_API_KEY=For other settings, models, and more, check out the documentation 📕.
Spin up your agent:
const { Agent } = require("browsernode");
const { ChatOpenAI } = require("browsernode/llm");
(async () => {
const llm = new ChatOpenAI({
model: "gpt-4.1",
temperature: 0.0,
apiKey: process.env.OPENAI_API_KEY,
});
const task = "Search for the latest tesla stock price";
const agent = new Agent({
task,
llm,
});
const history = await agent.run();
console.log(history.usage);
})();package.json
{
// ... other properties
"type": "module"
// ... other properties
}import { Agent } from "browsernode";
import { ChatOpenAI } from "browsernode/llm";
const llm = new ChatOpenAI({
model: "gpt-4.1",
temperature: 0.0,
apiKey: process.env.OPENAI_API_KEY,
});
const task = "Search for the latest tesla stock price";
const agent = new Agent({
task: task,
llm: llm,
});
agent.run();run
npx tsx quickstart.tsYou can test browsernode using gadio_demo
You can also use our browsernode-cli
Task:look up the world's most valuable companies, save top 5 companies and their value to companies.txt.
output: companies.txt
1. Microsoft: $3.530 T
2. NVIDIA: $3.462 T
3. Apple: $2.934 T
4. Amazon: $2.251 T
5. Alphabet (Google): $2.125 T
Task:Write a letter in Google Docs to my Papa, thanking him for everything, and save the document as a PDF.
Task:go to https://en.wikipedia.org/wiki/Banana and click on buttons on the wikipedia page to go as fast as possible from banna to Quantum mechanics
// ... previous actions
🛠️ Action 1/1: {
"clickElement": {
"index": 41
}
}
// ... more actions
🛠️ Action 1/1: {
"done": {
"success": false,
"text": "I navigated through the Banana Wikipedia page, reaching the section on Fusarium wilt TR4. However, I did not complete the task of reaching Quantum mechanics."
}
}
// ... final result
📄 Result: I navigated through the Banana Wikipedia page, reaching the section on Fusarium wilt TR4. However, I did not complete the task of reaching Quantum mechanics.For more examples see the examples folder
We love contributions! Feel free to open issues for bugs or feature requests. To contribute to the docs, check out the /docs folder.
Top contributors
Languages
Share of the codebase by language, based on repository metadata from the host.
- TypeScript 84.8%
- JavaScript 15.2%
Repository Radar analysis
Deterministic insights derived from public metadata and our observations — not personal testing or reviews.
Why this repository is interesting
- Listed in our discovery index with public GitHub metadata for analysis.
Who should use it
- Developers working primarily with TypeScript
- Teams exploring AI tooling, agents, or ML infrastructure
Potential use cases
- Reference or evaluate TypeScript open-source approaches in this domain
- Prototype AI/agent workflows or study reference architectures
Strengths
- README present in our index
- Declared license: MIT License
Limitations / considerations
- Insights are derived from public metadata and our observations — not a substitute for code review
What to watch
- Radar Score is modest — dig into activity and docs before committing
Source: GitHub (public metadata) + Repository Radar analysis. We do not claim ownership of third-party repositories.
Similar repositories
ant-design/ant-design
★ 99,374 · TypeScript · radar 68
n8n-io/n8n
★ 203,331 · TypeScript · radar 67
immich-app/immich
★ 113,346 · TypeScript · radar 67
google-gemini/gemini-cli
★ 106,800 · TypeScript · radar 67
angular/angular
★ 101,004 · TypeScript · radar 67
storybookjs/storybook
★ 90,995 · TypeScript · radar 67


