Tag: Yew

Deploy a Yew Rust Application on an AWS EC2 Ubuntu Instance & Nginx

Reading Time: 5 minutes After you’ve finished developing your Yew Rust application, it’s time to make it available to your users. It is expected to be placed on a server someplace, either on a Cloud service provider or an on-premises server, for this purpose. This blog will go over how to launch your Yew Rust application on AWS EC2. […]

How to Handle Forms Efficiently in Yew Web Development?

Reading Time: 6 minutes In order to create a Yew web application, one must create mechanisms to allow end users to interact with the system and provide data via online forms. This is where form handling comes into play. Yew offers Rust’s rich type ecosystem which can be a great tool when it comes to ensuring data integrity on […]

How to Build a Rust WebAssembly Frontend App with Yew Framework?

Reading Time: 6 minutes While Rust is known for its backend web development capabilities, the introduction of WebAssembly (Wasm) has enabled the development of rich front-end apps in Rust. With the introduction of WebAssembly, it became possible to build frontend web apps in Rust, such as the one we just built, expanding development opportunities for developers. While all of […]

Back To Top