Blog

Plugins with Rust and WASI Preview 2

2024-07-16 01:00:00 UTC

One of the most promoted features of WASI preview 2 is the Component model, the idea that we can build binaries in any language that can be run in others. I wanted to do that with Rust, and found the documentation minimal. Here's how I built a plugin system in Rust!

Easy Leptos Editor

2024-04-12 21:00:00 UTC

There's a subtle pleasure in having your editor setup just the way you'd like. When you've got good error messages, autocompletion, intellisense, and all the LSP goodies we as developers have come to expect. wanted to know if I could get the same experience writing Leptos components that I do writing React components. And the answer is yes! Setting it all up will require a little bit of work, but in the end we should have a Leptos IDE rivaling that of Javascript in Visual Studio Code!

Full Stack Rust with Leptos

2024-04-02 03:00:00 UTC

I feel we've reached an inflection point for Leptos as a web framework, where the features and API has mostly solidified, and the benefits are becoming clear. Only time will tell if it spreads its wings and soars. One thing is certain, Rust for frontend web development is now a very viable option.

Compiling Rust to WASI

2024-03-18 01:00:00 UTC

Is WASI preview 2 ready for prime time? I explore using it for my Rust/C project to bring additional functionality to the browser!

How I Improved My Rust Compile Times - Part 2

2023-11-17 17:00:00 UTC

In my previous post I decreased my Rust compile times by 75%. Will Rust's new parallel compiler frontend, or converting my crate into a workspace, push the needle any farther?