Try out a full dev environment in the browser without installing anything locally.
Run and preview a small web server directly inside a browser tab.
Use a local AI coding agent that edits files and runs commands without any cloud calls.
Experiment with npm packages, git commands and a code editor in one self-contained page.
| dhravya/burrow | davedbase/solid-slider | metavault-fi/solana-pumpfun-bundler | |
|---|---|---|---|
| Stars | 115 | 116 | 114 |
| Language | TypeScript | TypeScript | TypeScript |
| Last pushed | — | 2026-02-14 | — |
| Maintenance | — | Maintained | — |
| Setup difficulty | moderate | easy | hard |
| Complexity | 4/5 | 2/5 | 4/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires Bun 1.3 or newer installed locally to run the dev server.
Burrow packs an entire coding setup into a single browser tab. Instead of installing a runtime, a terminal and an AI coding tool on your computer, you open a webpage and get all of it running right there, with nothing sent to any outside server. The project's trick is that it cannot actually run Bun, a JavaScript runtime, directly inside a browser, so instead it recreates the pieces that make a real dev machine feel real. It uses Bun's own code transpiler compiled to run in the browser, a shared virtual file system that the code editor, terminal and version control all read from and write to, and background browser workers that stand in for separate running processes. A special browser feature lets a program running inside the page act like a real web server you can open and click around in, as if it were hosted somewhere else. Inside the tab you get an interactive terminal with command history and tab completion, a code editor with a file browser and a live view of your uncommitted changes, the ability to run your code and see a live preview of any small web server you build, and a package manager that can download and install real packages from the npm registry. It also includes basic version control commands like cloning a project, committing changes and viewing history. A built in AI assistant runs a small language model directly on your computer's graphics card, using your browser rather than a cloud service. It can read your files, make edits, and run terminal commands on your behalf in a loop, similar to how AI coding assistants like Cursor work, except everything happens locally instead of over the internet. To run it yourself you need Bun installed, then a couple of commands starts a local development server you can open in your browser. The project is upfront that it is still young: some networking features, like raw database connections, are not yet supported.
Burrow runs a complete coding environment, terminal, editor, git and a local AI assistant, entirely inside one browser tab with nothing sent to a server.
Mainly TypeScript. The stack also includes TypeScript, Bun, WebAssembly.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.