The Evolution and Future of IDEs

Being a developer today is perhaps more exhilarating than at any other time in history. We have incredible choice when it comes to languages and frameworks, and tools like GitHub and StackOverflow have connected millions to make sharing code and expertise simple and fast. These conveniences have allowed us all to spend more of our time being creative and honing our craft, rather than fighting with source code repos and ancient languages. But in this age of global sharing and constant collaboration, one of our most important development tools, the IDE, has remained stubbornly individual and private. Why?

IDEs are very personal — perhaps to a fault. Before developers can start work on a project, we have to set up our IDE’s workspace, from configuring the project to marrying that workspace to a runtime that we download and configure separately. If the runtime is using a desktop or laptop, we may have to contend with resource limitations and can’t easily share their runtime with others (in fact the steps we took to make it work might not even work for someone else). If the runtime is shared on a Virtual Machine (VM), then it’s likely a large one that’s hard to keep synchronized with the ever-evolving codebase and dependencies. Today, when most developers contribute to many projects (often simultaneously), this setup tax becomes prohibitive — and seems to go against the sharing and collaboration that’s swept the rest of the development tooling world.

So why can’t anyone, anywhere, contribute to a project without installing or configuring any software? To fully realize this dream, we need to redefine the developer workspace.

Eclipse Che is first to deliver on this vision by integrating a cloud IDE, workspace server and plug-in platform into a universal developer workspace that’s portable and extensible. Che workspaces include the IDE, project sources and runtime in a single, versionable unit. Wherever that workspace lives and runs, it has identical behavior. A universal workspace allows the IDE to be as collaborative and portable as the rest of our tools.

eclipse che workspace

Defining a universal workspace

Che’s universal workspace has five key attributes:

Runtime-included

In Che, workspaces bring their own runtimes that run in Docker containers and are activated with the workspace. Projects are mounted into those runtimes, and the workspace serves up its own browser IDE with an Eclipse Orion editor, although any desktop IDE can be connected to the workspace with a super-fast Fuse-based mount and sync mechanism based on SSH and unison. Run as many workspaces in parallel as you want.

Portable and Shareable

Che’s workspaces are naturally portable - all you need to use them is a browser so you can start a project on your desktop, tweak it over lunch on an iPad and then ask a friend to try it on her Chromebook. You can share access to your workspace to collaborate with others, or send someone your configuration and they can have an exact replica (including the runtime) running on any OS in less than a minute.

Programmable

Che offers RESTful APIs for the workspace server and for each workspace that is created. This lets you programmatically control the workspace lifecycle and resourcing through the server, or interact with an individual workspace. Eclipse Che plugins installed into the workspace can alter that API set, which is available to the Che server and any remote client such as a browser or desktop IDE.

SAP leveraged Che’s programmability to build the developer tooling for their SAP HANA cloud products. The SAP HANA IDE simplifies development of full-stack business applications encompassing user interface apps, business logic, data models and analytics. SAP preserved the Che server and workspaces, but created a custom IDE that communicates with Che over its RESTful APIs.

Versionable

If your workspace contains a runtime, what happens if that runtime needs to change during development? Che uses versionable configuration files to describe the entire structure of the workspace and its dependencies. Docker runtimes allow us to define the construction of the image through Dockerfiles and images, so it’s possible to reconstitute workspaces that are identical (including their internal state) in a number of locations.

Red Hat has integrated Che with OpenShift (a self-service platform for provisioning, building and deploying containerized applications) to provide on-demand production replicas of both development and production systems.

Extensible

A universal workspace is nothing without an ecosystem and community to build upon it. Extensions can be built to alter any aspect of Che. There are three types of extensions:

  • Extensions inside the browser, loaded from your workspace
  • Extensions in the Che server
  • Extensions customized for the workspace, injected as an agent into the runtime based upon the project types selected by users

You can then package multiple extensions into plugins, compile them with the Che core and create your own assemblies. Package these as your own hosted server or as a desktop application to run on someone else’s computer.

While Che has its own set of plugins around the Java/Javascript tool stack, it has also embraced Eclipse Orion editor, diff and git as well as the JDT core.

A new landscape

Che fulfills a powerful vision for anyone contributing to projects, from professionals to new practitioners. No longer will we spend hours installing or configuring runtimes in order to experiment with or contribute to a project — instead, universal workspaces make it easy to share what we love to do with others.

Find out more about Eclipse Che and the evolution of IDEs here.

Jetsons video link

About the Authors