DEV Community

Cover image for From Text Editors to Cloud-based IDEs - a DevEx journey
Jeremy Meiss
Jeremy Meiss

Posted on • Originally published at jmeiss.me

From Text Editors to Cloud-based IDEs - a DevEx journey

Remember the days of text-based editors like Vim and Emacs? It’s a far cry from today’s sophisticated IDEs with features like code completion and debugging tools, and “developer experience” is one of the biggest reasons why.

Before we get too nostalgic, I'm going to define Developer Experience (DevEx).

What is Developer Experience?

DevEx encompasses everything a developer, or ops practitioner, interacts with throughout the software development lifecycle. It includes the tools they use, the processes they follow, and their work environment. To quote a fantastic DevEx practitioner:

DevEx is the journey of developers as they learn and deploy technology. When successful, it focuses on eliminating obstacles that hinder a developer or practitioner from achieving success in their endeavors.
JessicaWest

With that in place, here’s a brief and wholly incomplete timeline to illustrate the impact of DevEx on software development.

Text only editors

Before the 1990s, you primarily had text-based editors for writing code, like Vi, which evidently is supposed to be called “SIX.”

USER FRIENDLY by Illiad

Who knew? It was created in 1976 (originally as ex) and included in the first BSD Linux release.

Then we had Emacs in 1985, Vim in 1991, and my personal favorite, Nano. And only partially because I can exit it without throwing out the computer and buying a new one like I do with Vim. Saving the planet, one less computer thrown away because of Vim at a time.

The cutting edge: HP Softbench?

One of the first IDEs with a plugin concept was HP Softbench, released in 1989. HP Softbench was one of the first plugin IDEs, shipped with its own library, and was extensively discussed in the June 1990 edition of the HP Journal.

HP Softbench in  raw `Library as a Service` endraw  mode

It’s a fascinating read as HP lays out its software architecture and development vision, including automated testing, distributed computing, integrated and interchangeable tools, and more. Here is the link to the PDF—I highly recommend reading it.

The early reviews of IDEs as a concept weren’t great, though. In 1995, Computer Week in Germany commented that:

...the use of an IDE was not well received by developers since it would fence in their creativity. -Computerwoche, Germany, 1995

Native IDEs enter the scene

Around the same time HP was releasing Softbench, native IDEs were emerging: Turbo Pascal in 1983 and Apple’s Macintosh Programmer’s Workshop in 1986. Borland Delphi was released in 1995 and was really the first to focus on Rapid Application Development (RAD) as a concept. Fun fact: Delphi is still around today, courtesy of Embarcadero.

The World Wide Web expansion

With the launch of the World Wide Web and its subsequent explosion of growth, IDEs started becoming more graphical and having a more modern look and feel. The first HTML WYSIWYG editor, WebMagic, was built by Silicon Graphics and released in January 1995 (in less than 90 days!). I recommend reading the series of blog posts that its creator, John McCrea, wrote about the history of WebMagic, which really begins here, and following the next few posts afterward.

FrontPage soon followed in October 1995 after Microsoft acquired it from Vermeer. Then Macromedia’s Dreamweaver broke onto the scene in 1997, after they acquired Backstage (a different “Backstage” product) from iBand in 1996). Dreamweaver completely changed the game in many respects, as Macromedia had a history of their products getting community-sourced tools, plugins, scripts, etc.

Microsoft FrontPage 2000 saw the first inclusion of plugins and integrations in early 1999 to make web management easier via FrontPage Server Extensions. NetBeans was released in 2000 for Java. IntelliJ IDEA and Eclipse followed in 2001, along with Visual Studio, which offered enhanced functionality and more sophisticated features like intelligent code completion, refactoring tools, and improved version control integration. We saw a noticeable increase in support for multiple languages and frameworks, making these IDEs more versatile.

Lightweight, extensible, and now Cloud-based

In the late 2000s, Sublime Text entered the scene, followed later by Atom and VS Code. All of these focused on speed, user-friendly interfaces, extensible plugin ecosystems, and more. They catered to a range of developers by being less resource-intensive and more customizable.

Then, we had the rise of the cloud and the arrival of cloud-based IDEs. The first cloud-based IDE was PHPanywhere (eventually becoming CodeAnywhere) in 2009, followed by Cloud9 in 2010 (before AWS bought it in 2016), Glitch (2018), GitPod (2019), GitHub Codespaces (2020), and Google’s Project IDX (2024).

Yes, I know I’m probably missing quite a few others.

These cloud-based IDEs all share the same idea: they offer fully configured development environments in the cloud that are accessible from anywhere and anyone, reducing the need for complex local setups.

Developer Experience can drive innovation

Who, in 1976, could have imagined that a developer could have a fully configured development environment in the “cloud”? As technology evolved, the need for more robust and integrated development environments grew, and options emerged for developers to choose the best tool for the job. Or what they want to use since Vim and Emacs still have avid followings.

We went from the feeling that IDEs aren't well received, (see above quote from Computerwoche) to features like these being essential for developer experience:

  • Code completion
  • Syntax highlighting
  • Debugging
  • VCS integration (no more FTPing files around)
  • Multi-language support
  • Framework integration
  • Pair programming

As should be the case, DevEx strategies have evolved to meet contemporary development challenges and opportunities. The journey reflects a relentless pursuit of efficiency, usability, and developer productivity, from basic, manually configured environments to sophisticated, cloud-based, and automated setups.

In the highly competitive landscape of modern software development, DevEx is the critical differentiator that makes a company and its products and services stand out. A positive DevEx translates into the ability to attract top talent, helps companies increase team performance and product quality, has more engaged and productive development teams, and enhances a brand’s reputation, directly impacting the bottom line. I’ll talk about these in more detail in a coming post.

Where will we find ourselves in the next few years, especially with “AI”-driven features being the new thing and added to IDEs?

Top comments (2)

Collapse
 
moopet profile image
Ben Sinclair

Remember the days of text-based editors like Vim and Emacs? It’s a far cry from today’s sophisticated IDEs with features like code completion and debugging tools

Sorry, what? Huge numbers of people use Vim and Emacs every day in 2024, and have access to code things like completion and debugging tools - as you say yourself:

Vim and Emacs still have avid followings

Collapse
 
jerdog profile image
Jeremy Meiss

Yes, you are correct. Take it in context: the "days of text-based editors" when there were no other options and those features didn't exist to where we are now where those are requirements.

The fact that Vim and Emacs now have those features is a result of DevEx over the years.