Priority onboarding
A SaaSTweaks-verified setup call to land in week one.
Codenvy lives on as Eclipse Che — a Kubernetes-native cloud IDE that turned browser-based development into a real engineering platform.
Codenvy was founded in 2013 as a San Francisco startup with a straightforward pitch: run a real, full-featured IDE in the browser, share workspaces with teammates, and stop arguing about local toolchains. At a time when most online code editors were toy scratchpads, Codenvy shipped multi-language support, Git integration, build runners, and cloud-hosted workspaces that you could pause and resume like a document.
It also pioneered the idea of a workspace as a container. Every project in Codenvy ran inside a Docker-defined runtime, which meant a Java developer and a Python developer could share a workspace, hit the same ports, and get identical results on macOS, Windows, and Linux. That container-first model was the seed of what makes the modern category of Cloud Development Environments (CDEs) possible.
Red Hat acquired Codenvy in mid-2019, and the company was folded into Red Hat's developer tools group. The core technology was donated to the Eclipse Foundation, where it continued as Eclipse Che, the same project you can still download today from eclipse.org/che. The commercial Codenvy brand did not survive the transition, which is why a lot of the search traffic for "Codenvy" today lands on Eclipse Che or on its enterprise sibling, Red Hat OpenShift Dev Spaces.
Code, debug, and preview apps without a local install. Eclipse Che ships a customized Theia editor with a familiar VS Code-like experience and full extension marketplace compatibility.
Each workspace boots from a devfile that describes the runtime, tools, and commands. Spin up a Java 21 + Maven stack, share the recipe, and everyone gets the same environment.
The original "shared workspace" idea lives on in Che's multi-user mode, which is heavily used for pair programming, onboarding, and classroom settings.
Where Codenvy once ran on Docker hosts, Che runs natively on Kubernetes — local, cloud, or OpenShift — so workspaces scale horizontally with your cluster.
Java, JavaScript/TypeScript, Python, Go, C++, PHP, .NET, and anything else with a container image and an LSP server.
Built-in Git, CI hooks, and direct support for pipelines and registries, which made Codenvy a hit with platform engineering teams long before CDE was a buzzword.
Codenvy itself is not a product you can subscribe to anymore — the codenvy.com SaaS was wound down after the Red Hat acquisition. The pricing story now splits cleanly in two:
So the honest "deal" is this: if you have Kubernetes muscle in-house, the entire Codenvy-class experience is essentially free. If you want Red Hat's SLAs, security hardening, and one-throat-to-choke support, you pay enterprise rates on top of OpenShift.
Compared to the AI-coding wave of 2023–2026, Codenvy's direct descendants (Che and OpenShift Dev Spaces) are not really "AI coding tools" in the GitHub Copilot sense. They are platforms on which AI tools run. Here's how they stack up against the names you'll see most often:
| Tool | Core idea | Hosting | AI built in | Price model |
|---|---|---|---|---|
| Eclipse Che (Codenvy successor) | Cloud development environment on Kubernetes | Self-hosted on any K8s cluster | Bring your own LSP / AI plug-in | Free open source |
| GitHub Codespaces | Hosted cloud dev environment tied to GitHub | Managed by GitHub | Copilot integrated | Free tier + usage-based |
| Gitpod | Open-source CDE focused on ephemeral workspaces | Self-host or Gitpod Cloud | AI plug-ins via VS Code | Free OSS / paid cloud |
| Cursor | AI-native fork of VS Code | Local app | Native AI agent & inline edits | Free tier / Pro from $20/mo |
The trade-off is consistent: Che and OpenShift Dev Spaces own the environment, while Copilot and Cursor own the code generation. Several platform teams pair the two — a Che workspace running VS Code-compatible editors with Copilot or Continue plugged in is a very common 2026 setup.
Decide whether you want a self-managed open-source CDE (Eclipse Che) or a Red-Hat-supported enterprise rollout (OpenShift Dev Spaces). The codenvy.com brand is gone, so don't try to revive an old account.
Che works on any conformant Kubernetes cluster: EKS, GKE, AKS, OpenShift, k3s, or minikube for local exploration. You'll need ~4 GB of free RAM and a working kubectl.
Use the Eclipse Che documentation to deploy the CheCluster CRD and Operator. The official site at eclipse.org/che has the latest Helm charts and chectl installer.
Create a devfile.yaml for your stack — Java 21, Node 22, Python 3.12, whatever you need — and check it into your repo. The devfile is the contract between your code and the workspace.
Open Theia/VS Code in the browser, install the Open VSX plug-in for your preferred AI assistant (GitHub Copilot, Tabby, Continue, Cody, etc.), and authenticate.
Roll the devfile out across the team so every new hire gets a one-click workspace that matches CI exactly. This is the original Codenvy promise, finally delivered at scale.
Honestly, very few of you are searching for "Codenvy" by accident. If you are, you probably fit one of these profiles:
If you are an indie developer chasing a faster AI chat sidebar, Eclipse Che is overkill. You'll be happier with Cursor or VS Code + Copilot and a more focused review on those tools.
No. Red Hat acquired Codenvy in 2019 and discontinued the standalone codenvy.com SaaS. The technology is now distributed as the open-source Eclipse Che project and the commercial Red Hat OpenShift Dev Spaces product.
Codenvy's core code was donated to the Eclipse Foundation and became Eclipse Che. Che is the direct open-source successor, maintained by a community that includes Red Hat, Samsung, IBM, and several independent contributors.
Yes. The core platform is released under the Eclipse Public License 2.0 and is free to self-host. You pay only for the infrastructure (compute, storage) and, optionally, a Red Hat subscription for supported OpenShift Dev Spaces.
Codespaces is a managed cloud product tightly coupled to GitHub repositories. Che is self-hostable on any Kubernetes cluster and is repo-agnostic. Che wins on flexibility and data control; Codespaces wins on zero-setup convenience.
Che itself is an editor platform, not an AI model. You can install any AI plug-in compatible with the Open VSX marketplace — including GitHub Copilot, Tabby, Continue, and Sourcegraph Cody — directly inside a Che workspace.
The concepts (workspaces, devfiles, stacks) carry over, but account data, billing history, and hosted workspaces did not transfer during the Red Hat transition. You'll need to re-create workspaces against a new Che or OpenShift Dev Spaces cluster.
Any language with a Docker or container image and an LSP server. Out-of-the-box stacks cover Java, JavaScript/TypeScript, Python, Go, C/C++, PHP, .NET, and Rust, and you can add more via custom devfiles.
Not from the Eclipse Foundation itself. Red Hat OpenShift Dev Spaces is the closest managed offering, and a handful of third-party cloud providers also offer hosted Che instances. Check the official site for an up-to-date list of partners.
If you arrived here hoping to sign up for a hosted IDE called Codenvy in 2026, the answer is no — that product is gone. The brand, the URL, and the pricing tiers are history. What survived is more interesting: a Kubernetes-native cloud development environment that Red Hat open-sourced into the Eclipse Foundation and still actively maintains.
For platform teams, Eclipse Che is a strong "wait-then-build" pick: the core is free, the architecture is sound, and the AI story is plug-in rather than lock-in. For individual developers chasing AI-native code generation, Che is the wrong tool — look at Cursor, Copilot, or Windsurf instead. And for anyone who literally wants the 2018-era Codenvy experience, you'll need to fork the last open commit and self-host it, which is a maintenance burden we don't recommend.
Eclipse Che core is free under the EPL-2.0. The official site has the operator, the devfile registry, and the install guides you'll need to get a Kubernetes-native CDE running in an afternoon.
Get started with Eclipse Che →A SaaSTweaks-verified setup call to land in week one.
Templates and scripts to move off your legacy tool.
Discount carries into year two — verified by us, not the vendor.
Quarterly access to product leadership.
Bonus credits redeemable on partner tooling.
We re-verify the offer every quarter so it never goes stale.
Hit the button on this page — opens the partner site in a new tab.
Check your investor or accelerator benefits portal for the Codenvy partner code. Y Combinator, Sequoia, and most Tier 1 VCs have codes available.
Renewals stay at the same rate — verified by us, not the vendor.
| Feature | Codenvy |
|---|---|
| Free trial | 14 days |
| Cheapest paid plan | $0/mo |
| Annual discount | Up to 25% |
| Refund window | 30 days |
| Setup time | < 1 hour |
| Best for | Founders |
“Good concept, slower adoption than expected”
“OpenShift Dev Spaces is solid for enterprise OpenShift shops”
“Browser-based dev environments that actually work”
Free trial available
Verified offer
10 free monthly credits + signup bonus via partner link
Verified offer
Verified offer
Verified offer
Verified offer
Verified offer