Analysis updated 2026-05-18
Deploy a compiled Zero-language binary to Cloudflare's edge with one click.
Learn how Cloudflare Workers can route requests into a Cloudflare Container running a native binary.
Use this as a template for running other compiled languages on Cloudflare Containers.
| acoyfellow/zero-cloudflare-hello | abderazak-py/retro-homepage | benagastov/nim-wasm-compiler | |
|---|---|---|---|
| Stars | 6 | 6 | 6 |
| Language | HTML | HTML | HTML |
| Setup difficulty | easy | easy | easy |
| Complexity | 2/5 | 2/5 | 3/5 |
| Audience | developer | ops devops | developer |
Figures from each repo's GitHub metadata at analysis time.
The one-click deploy button works without installing the Zero compiler since the binary is pre-built.
This repository is a minimal, deployable example showing how to run a Zero programming language binary on Cloudflare's edge infrastructure. Zero is a programming language, from zerolang.ai, that compiles to native Linux executables. Cloudflare Containers is a service that can run those executables at the edge, meaning on servers distributed close to users around the world. The project demonstrates a chain: an incoming HTTP request hits a Cloudflare Worker, a small JavaScript function running at the edge, which forwards it to a Cloudflare Container, which runs the compiled Zero binary and returns its standard output as the HTTP response. The entire useful program is a few lines of Zero code that writes a greeting string to output. The compiled binary included in the repository is 261 bytes, a tiny Linux executable. Because the pre-built binary is committed to the repository, deploying it requires no Zero compiler installation. Cloudflare provides a one-click deploy button that forks the repository and sets up both the Worker and the Container automatically. The repository also includes a Dockerfile defining the container image, a small HTTP adapter script that bridges the container to the Worker, and a wrangler configuration file, the standard Cloudflare deployment config format, that ties it all together. You would use this as a starting point if you are exploring the Zero language and want to see it running on real infrastructure, or if you are evaluating Cloudflare Containers as a deployment target for compiled executables. The primary files are HTML and TypeScript, and the project is released under the MIT license.
A one-click deployable hello world example that runs a compiled Zero-language binary on Cloudflare Containers.
Mainly HTML. The stack also includes Zero, TypeScript, Cloudflare Workers.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice (MIT license).
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.