Blog

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?

How I Improved My Rust Compile Times by 75%

2023-11-09 01:00:00 UTC

One of Rust's often mentioned pain points is slow compile times. In order to have nice things like the borrow checker, safety guarantees, and zero cost abstractions, we pay in time spent compiling. I was able to decrease that time by 75%.