Published May 28, 2020

Episode 411: Aaron Vonderhaar on Elm

Join Aaron Vonderhaar as he delves into Elm's revolutionary architecture, error handling, and optimizing performance for web development. Discover how Elm's integration with IDEs and testing frameworks makes it a standout in the front-end ecosystem, offering a seamless and efficient developer experience.
Episode Highlights
Software Engineering Radio - the podcast for professional software developers logo

Popular Clips

Episode Highlights

  • IDE Integration

    Elm's integration with various IDEs is a focal point for enhancing developer experience. highlights the availability of plugins for different editors, with the Intellij plugin by Keith Lezuka being the most advanced, offering real-time updates and autofix features 1. The development of an Elm language server is underway, aiming to provide a unified backend for features like autocomplete and jump-to-definition across multiple editors. This protocol, initially developed by Microsoft for Visual Studio Code, allows editors to communicate with language servers, streamlining the integration process for various programming languages 1.

    It's like a centralized version of storing the entire syntax tree, so you can just sort of reference all the new language features.

    ---

    Despite these advancements, Vonderhaar notes that there is still significant room for improvement in Elm's IDE support.

       

    Testing Frameworks

    Testing in Elm is robust, with tools like Elm test providing comprehensive support for various testing types. explains that Elm test primarily focuses on unit tests but also supports fuzz testing, which explores a wide range of inputs and outputs to ensure function reliability 2. For integration testing, Vonderhaar developed Elm program test, which simulates the Elm runtime and browser, allowing for complex testing scenarios akin to Selenium tests 2.

    Elm itself has kind of some basic awareness of the fact that tests exist and that most projects are going to have them.

    ---

    The evolution of Elm's testing frameworks has been rapid, with significant developments occurring in the past few years, driven by community contributions and Vonderhaar's extensive experience in test frameworks 3.

Related Episodes