{"id":27551852,"url":"https://github.com/browserable/browserable","last_synced_at":"2025-05-15T07:03:52.924Z","repository":{"id":286636145,"uuid":"962079433","full_name":"browserable/browserable","owner":"browserable","description":"Open source and self-hostable browser automation library for AI agents","archived":false,"fork":false,"pushed_at":"2025-04-17T10:05:48.000Z","size":8878,"stargazers_count":556,"open_issues_count":9,"forks_count":51,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-05-12T14:12:37.636Z","etag":null,"topics":["ai-agents","ai-tools","browser-automation","browser-use","browser-use-js","deep-research","javascript","llm","playwright"],"latest_commit_sha":null,"homepage":"https://browserable.ai","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/browserable.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-07T16:04:36.000Z","updated_at":"2025-05-11T06:09:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"6635edaf-adf5-42ab-9b7d-584490607dd8","html_url":"https://github.com/browserable/browserable","commit_stats":null,"previous_names":["browserable/browserable"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserable%2Fbrowserable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserable%2Fbrowserable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserable%2Fbrowserable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserable%2Fbrowserable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/browserable","download_url":"https://codeload.github.com/browserable/browserable/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254291961,"owners_count":22046424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","ai-tools","browser-automation","browser-use","browser-use-js","deep-research","javascript","llm","playwright"],"created_at":"2025-04-19T09:44:38.284Z","updated_at":"2025-05-15T07:03:47.911Z","avatar_url":"https://github.com/browserable.png","language":"JavaScript","readme":"\u003cdiv align=\"center\"\u003e\n\n[Website](https://browserable.ai) | [Documentation](https://docs.browserable.ai) | [Discord](https://discord.gg/b6s9fXNjeQ) | [Twitter](https://x.com/browserable)\n\n![Browserable Logo](https://github.com/browserable/browserable/blob/main/docs/browserable-ai-invert.png?#gh-dark-mode-only)\n![Browserable Logo](https://github.com/browserable/browserable/blob/main/docs/browserable-ai.png?#gh-light-mode-only)\n\n## Open source browser automation library for AI agents\n\u003c/div\u003e\n\nBrowserable allows you to build browser agents that can navigate sites, fill out forms, clicking buttons and extract information. It is currently at 90.4% on the Web Voyager benchmarks.\n\n## Quick start\n\nThe fastest way to get started is to run the npx command. This will guide you through the setup process and ensure you have all required dependencies.\n\n```bash\nnpx browserable\n```\n\nVisit `http://localhost:2001` to set your LLM and Remote Browser API Keys to start using.\n\n### Manual setup\n\nClone the repository:\n  ```bash\n  git clone https://github.com/browserable/browserable.git\n  cd browserable\n  ```\n\nPre-requisites:\n  - Install [Docker](https://docs.docker.com/engine/install/)\n  - Install [Docker Compose](https://docs.docker.com/compose/install/)\n\nStart the development environment:\n  ```bash\n  cd deployment\n  docker-compose -f docker-compose.dev.yml up\n  ```\n\nSet your API keys:\n  - Open Browserable admin dashboard: [http://localhost:2001/dash/@admin/settings](http://localhost:2001/dash/@admin/settings).\n  - Set API key of any one LLM provider (Gemini/ Open AI/ Claude).\n  - Sign up for a free plan with any one remote browser provider ([Hyperbrowser](https://hyperbrowser.ai/)/ [Steel](https://steel.dev/)).\n  - Set the API key of the remote browser provider in your [Browserable admin dashboard](http://localhost:2001/dash/@admin/settings).\n\n## Services\n\nOnce running, you'll have access to the following services:\n\n| Service | URL/Port | Description |\n|---------|----------|-------------|\n| UI Server | http://localhost:2001 | Main user interface |\n| Documentation | http://localhost:2002 | Local documentation |\n| Tasks Server | http://localhost:2003 | Task management API |\n| MongoDB | 27017 | Database |\n| MongoDB Express UI | http://localhost:3300 | Database management |\n| Redis | 6379 | Caching and queues |\n| MinIO API | http://localhost:9000 | Object storage API |\n| MinIO Console | http://localhost:9001 | Object storage UI |\n| DB Studio | http://localhost:8000 | Database management |\n\n## JavaScript SDK\n\nInstall the SDK using npm:\n```bash\nnpm install browserable-js\n```\n\nOr using yarn:\n```bash\nyarn add browserable-js\n```\n\nHere’s a simple example to get you started:\n\n```typescript\nimport { Browserable } from 'browserable-js';\n\n// Initialize the SDK\nconst browserable = new Browserable({\n  apiKey: 'your-api-key'\n});\n\n// Create and run a task\nasync function runTask() {\n  const createResult = await browserable.createTask({\n    task: 'Find the top trending GitHub repos of the day.',\n    agent: 'BROWSER_AGENT'\n  });\n\n  // Wait for task completion\n  const result = await browserable.waitForRun(taskId);\n  console.log('Results:', result.data);\n}\n```\n\n## Demos\n\nTask: On amazon.com search for a yoga mat at least 6mm thick, non-slip, eco-friendly, and under $50.\n\n![amazon-demo](https://github.com/user-attachments/assets/98817aad-786d-43bc-8bbc-09ad33015fa5)\n\n\u003cbr\u003e\u003cbr\u003e\nTask: On arxiv.org locate the latest paper within the 'Nonlinear Sciences - Chaotic Dynamics' category, summarize the abstract, and note the submission date.\n\n![arxiv-demo](https://github.com/user-attachments/assets/c5e5a830-5050-4938-9832-2d2207c2720f)\n\n\u003cbr\u003e\u003cbr\u003e\nTask: On coursera.com find a beginner-level online course about '3d printing' which lasts 1-3 months, and is provided by a renowned university.\n\n![coursera-demo](https://github.com/user-attachments/assets/ea62d794-dccc-4517-a5be-6af82de9b5a5)\n\n\n\n\n\n\n## Configuration options\n\nBrowserable offers configuration options for:\n- LLM Providers\n- Storage Solutions\n- Database Systems\n- Remote Browsers\n- Custom Functions\n\nFor a complete list of environment variables and their configurations, see [Environment Variables Documentation](https://docs.browserable.ai/development/environment-variables).\n\n## Documentation\nSee [browserable.ai/docs](https://docs.browserable.ai) for full documentation, or you can check the [REST API reference](https://docs.browserable.ai/rest-api/introduction)/ [JS SDK guide](https://docs.browserable.ai/js-sdk/introduction).\n\n## Contributing\n\nBrowserable is an open-source and self-hostable project. We welcome contributions! 💛\n\nHere's how you can help:\n1. Fork the repository.\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`).\n3. Commit your changes (`git commit -m 'Added AmazingFeature'`).\n4. Push to the branch (`git push origin feature/AmazingFeature`).\n5. Open a pull request.\n\n## Support\n\nQuestions/ feedback? [Join Discord](https://discord.gg/b6s9fXNjeQ).\n\n## Acknowledgments\n\nSome amazing open source projects Browserable wouldn't have been possible without: [bull](https://github.com/OptimalBits/bull), [mongo-express](https://github.com/mongo-express/mongo-express), [Stagehand](https://github.com/browserbase/stagehand), [Supabase](https://github.com/supabase/supabase).\n","funding_links":[],"categories":["网络信息服务","Browser \u0026 Web Automation"],"sub_categories":["网络爬虫"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrowserable%2Fbrowserable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrowserable%2Fbrowserable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrowserable%2Fbrowserable/lists"}