So I've been learning Ruby lately. As I was diving into the language and exploring what it can do, I realized it would be super helpful to have an interactive environment right on my blog where I could:
Try out Ruby code snippets in real-time
Share working examples with my readers
Document my own learning progress
Most programming blogs just have static code blocks. I wanted something more dynamic - a playground where anyone could run, modify, and experiment with Ruby directly in the browser, without having to set up anything locally.
The End Result
Before we get into the technical stuff, here's what the final product looks like:
The Ruby playground integrated into my blog, with code editor and output console
Tech Stack
Here's what I used to build this thing:
Frontend
tsx: For the UI and state management
Next.js: As the tsx framework for my blog
Tailwind CSS: For styling
Monaco Editor: The same editor that powers VS Code, for a rich coding experience
tsx-Resizable-Panels: For creating resizable panels
WebAssembly
Ruby WASM: Ruby compiled to WebAssembly (ruby-head-wasm-wasi)
@wasmer/wasi: To emulate the WASI environment in the browser
@wasmer/wasmfs: Virtual file system for the Ruby environment
Utilities
LZ-String: For compressing code in URL parameters
Lucide tsx: For icons
How I Built It
1. Setting Up WebAssembly for Ruby
The first challenge was getting Ruby to run in the browser. This was possible thanks to the Ruby WASM project, which compiles the Ruby interpreter to WebAssembly.
Simplified architecture of Ruby running via WebAssembly in the browser
2. Creating the Editor Interface
For the editor interface, I used Monaco Editor, the same one that powers VS Code. This gave me features like syntax highlighting, autocompletion, and auto-formatting for Ruby.
The Playground component is the heart of the application, managing state, initializing the Ruby VM, and coordinating the interaction between the editor and console:
I ran into several challenges while building this:
Memory Management
WebAssembly has memory limitations, and the Ruby interpreter can be memory-hungry. I had to optimize memory usage and implement mechanisms to prevent leaks.
Ruby Library Compatibility
Not all Ruby libraries work in the WebAssembly environment. I had to adapt some examples and make sure the basic functionality was available.
Performance
Running Ruby via WebAssembly is slower than native execution. I implemented visual indicators to show when code is running and optimized what I could.
Loading indicator during Ruby VM initialization
Cool Features
Code Sharing via URL
I implemented a system that lets you share code snippets through the URL, using LZ-String compression to keep the URL size manageable:
Building a Ruby playground for my blog was a fascinating technical challenge that combined my interest in Ruby with my knowledge of modern web development. The result is a tool that not only helps me learn and experiment with Ruby but also enriches the experience for my blog readers.
If you're thinking about building something similar, I hope this post has given you some useful insights into the technologies and approaches you can use. The complete source code is available on my GitHub, and I'm always open to suggestions and contributions.
Happy Ruby coding! 💎
This post is part of my journey learning Ruby and web development. Share your thoughts and suggestions in the comments below.