OpenWorkers: Open-Source Runtime for Self-Hosted Cloudflare Workers Implementation
By
max_lt
Sesame, salt, and substance. A flagship bake.
Summary
OpenWorkers is an open-source runtime that enables developers to run Cloudflare Workers-style JavaScript applications on their own infrastructure using V8 isolates. The project brings the Cloudflare Workers programming model to self-hosted environments, supporting features like KV storage, PostgreSQL database integration, S3/R2-compatible storage, service bindings, and environment variables. It allows developers to execute JavaScript code in isolated V8 environments with the same API patterns as Cloudflare Workers.
Key quotes
· 4 pulledOpenWorkers is an open-source runtime for executing JavaScript in V8 isolates.
It brings the Cloudflare Workers programming model to your own infrastructure.
What works today worker.ts export default { async fetch(request, env) { const data = await env.KV.get('key'); const rows = await env.DB.query('SELECT * FROM users WHERE id = $1', [1]); return Response.json({ data, rows }); } };
Features Bindings • KV storage (get, put, delete, list) • PostgreSQL database • S3/R2-compatible storage • Service bindings • Environment variables & secrets
You might also wanna read
JuiceFS: Open-Source Distributed POSIX File System for Cloud-Native Environments
JuiceFS is an open-source, high-performance distributed POSIX file system designed for cloud-native environments. It stores data in object s
OpenCloud: Open Source File Management and Collaboration Platform
OpenCloud is an open-source platform for file management, sharing, and collaboration, described as simple and sovereign. The article focuses
Google enters AI agent runtime race as the infrastructure layer becomes commoditized
Google repositioned Antigravity as a platform for developing and managing teams of autonomous AI agents at its I/O conference. The platform
bit.ly·10h agoComparing AI Agent Frameworks: Hermes Agent, AutoGPT, OpenAI Agents, and CrewAI in 2026
A practical, engineering-focused comparison of major AI agent frameworks in 2026, including Hermes Agent, AutoGPT, OpenAI Agents, and CrewAI
cstu.io·16h agoopenrsync: A BSD-Licensed Implementation of rsync for OpenBSD and Unix Systems
This article describes openrsync, a BSD (ISC) licensed implementation of the rsync file synchronization tool. It has been merged into OpenBS
openrsync: A BSD-Licensed Implementation of rsync for OpenBSD and Unix Systems
This article describes openrsync, a BSD (ISC) licensed implementation of the rsync file synchronization tool. It has been merged into OpenBS
