envGo v1.0.0
First release. A zero-dependency, single-binary runtime that lets plain HTML and
vanilla JavaScript use .env secrets without ever exposing them to the browser.
What's included
- Static file server + secure proxy in one binary. No Node.js, no runtime
dependencies, nothing to install beyond the executable itself. - Local mode —
/proxyguarded by a per-process session token plusHost
andOriginvalidation. - Public mode — fixed
/api/<name>routes defined in JSON, with per-route
variable allow-sets, per-route/per-IP rate limiting, optional bearer auth, and
response scrubbing. - Hot reload — edit
.envand changes apply within about 1.5 seconds. - Dashboard at
/__envgo_dashboardshowing variable names and request
metadata, never values. - PHP support —
.phpfiles executed server-side with.envinjected, plus
typo detection and warnings when source would print a secret. - TLS with an auto-generated self-signed certificate, TLS 1.2 minimum.
- Scaffolding —
envgo initandenvgo deploy.
Downloads
| Platform | File |
|---|---|
| macOS (Apple Silicon) | envGo-macOS-AppleSilicon.zip |
| macOS (Intel) | envGo-macOS-Intel.zip |
| Linux amd64 | envgo-linux-amd64 |
| Linux arm64 | envgo-linux-arm64 |
| Windows amd64 | envgo-windows-amd64.exe |
| Windows arm64 | envgo-windows-arm64.exe |
Install
macOS
Unzip the archive for your chip, then double-click Install_envGo.command. It
copies the binary to ~/.local/bin/envgo. If Gatekeeper blocks it, right-click
the file and choose Open, or run:
xattr -dr com.apple.quarantine envGo-macOS-AppleSiliconLinux
uname -m # x86_64 = amd64, aarch64 = arm64
sudo cp envgo-linux-amd64 /usr/local/bin/envgo
sudo chmod +x /usr/local/bin/envgoWindows
Copy envgo-windows-amd64.exe to a folder, rename it to envgo.exe, and add
that folder to your PATH.
Verify
envgo -v # envGo v1.0.0
envgo -h # flag referenceQuick start
mkdir myapp && cd myapp
envgo init
envgo run devKnown limitations
- Streaming (SSE) responses are not scrubbed, so an upstream that echoes a key
inside a stream will send it to the browser. default_rate_limitis empty by default, which means unlimited — rate
limiting must be opted into.- If PHP is unavailable or a script fails, the
.phpfile is served as a static
download rather than producing an error. - Rate limiting is per process and per IP; multiple instances multiply the limit.
- The session token is not user authentication.
Documentation
Full documentation lives at https://github.com/dnysaz/envgo-site