v0.6.0

vllm-project/vllmv0.6.0Dec 6, 2025by progrium

AI Summary

This release introduces static site publishing and port endpoints to Apptron, a browser-based Linux development environment. It also enhances WASM support and improves custom environment build performance.

Key Highlights

  • Static site publishing feature that publishes files to public URLs
  • Port endpoints that automatically create public URLs for listening programs (like Ngrok)
  • Improved WASI and Go JS Wasm executable execution from command line
  • 30% faster custom environment builds using .apptron/envbuild
  • Initial iframe embedding support for public environments

New Features

  • Static site publishing to public URLs
  • Automatic public URL creation for listening ports
  • WASI and Go JS Wasm execution support
  • Environment build speed improvements
  • Iframe embedding for public environments

Full Release Notes

# Port Endpoints and Static Site Publishing

> Apptron is a sophisticated browser-based cloud development environment that runs a full x86 Linux virtual machine entirely in the browser. It combines several cutting-edge technologies—WebAssembly, x86 emulation, Plan 9 filesystem protocols, and Cloudflare's edge computing platform—to deliver a complete development experience with VS Code, terminal access, and persistent storage, all without requiring any local installation. 

This is a fairly accurate summary from the [Apptron Analysis Report](https://github.com/simonw/research/blob/main/apptron-analysis/README.md) recently put together by [Simon Willison](https://simonwillison.net/) using Claude Code to inspect the project source and generate a report. While it does a decent job at covering Apptron architecture and capabilities, it's not perfect. Most notably, it's missing the recently added features of this release!

## Static Site Publishing

The Share dialog now has a Publish section that lets you publish static files from a particular project directory to a separate public URL. Publishing lets you use Apptron environments as a backend for updating blogs, marketing websites, documentation, etc. This is very similar to GitHub repositories being able to publish to GitHub Pages.

Considering an Apptron environment is just static files, this could soon be used to self-deploy new Apptron environments or Wanix-based virtual environments. Other long term plans for this functionality include automatic offline support, utilizing service workers, cache API, and web app manifest to be a zero config local-first platform. Static site publishing becomes progressive web app publishing.

As a full Linux environment, you can use any number of static site generators with publishing. If you have a favorite you want to get working in Apptron, submit an issue if you are having trouble. 

Lastly, for advanced users, what Publish does is effectively rsync files from the source directory to a `/public` mount that is synced directly with the files served on the publish URL. You could skip the Publish dialog and write your own publishing script, or even directly modify files under `/public`. This mount is only available after using Publish once. 

## Port Endpoints

If any program listens on the session IP, Apptron will automatically set up a temporary public URL that will tunnel/route to this port. This lets you share a public URL to a server running in your browser. It's like a built-in Ngrok (or localtunnel, if you remember). 

For example, if you install Python (`apk add -u python3`), you can run:
```
python3 -m http.server -b 0.0.0.0
```
This serves the current directory on port 8000, and Apptron will detect the port listen and print out the URL to access it publicly.

Future plans include tunneled WebSocket access for non-HTTP servers. 

## More Improvements

* You can now execute both WASI and "Go JS" Wasm executables from the command line.
* Go support has been improved with a pre-compiled standard library, speeding up initial builds.
* You can enable the "built-in" Go with `source /etc/goprofile`. 
* Custom environment builds using `.apptron/envbuild` finish 30% faster.
* There is initial support for embedding public environments via iframe. See Share > Embed.

Although it's very incomplete, there is also now a README that will slowly be improving. Unfortunately, this is the only current documentation besides these releases. However, as Simon Willison did, you can always have an LLM figure it out! Regardless, feel free to ask questions in Discord or in the Discussions here on GitHub. 

As usual, file issues, help out where you can, and a huge thanks to our [GitHub Sponsors](https://github.com/sponsors/progrium).

**Full Changelog**: https://github.com/tractordev/apptron/compare/v0.5.0...v0.6.0