Utkarsh Mishracodesage.hashnode.dev·Dec 13, 2024Getting Started with Axum: Beginner-Friendly Project Setup InstructionsIntroduction👋🏻 Hi there fellow rustacean! I’m Utkarsh, and I’ve joined a start-up which requires the knowledge of rust (Axum) for their backend role, as I was exploring different resources for learning Axum, it was pretty difficult to get my head a...11 likes·36 readsAxum Bootcampaxum
Jones Beachblog.fromscratchcode.com·Oct 7, 2024Declarative macro magic from Axum in RustTake a quick glance at the code snippet below. Without thinking too hard, is get a function or a method? How about post? Router::new() .route(“/one”, get(get_handler).post(post_handler)) .route(“/two”, post(post_handler).get(get_handler)) Wh...109 readsRust
Igor Berlenkoguryeah.hashnode.dev·Sep 1, 2024lets clone photoai with rust (still)!No time wasted here, just pure coding efficiency! VOD people on YouTube, I see you out there watching and waiting for your chance to be awake when I'm also streaming. Let's see, twitch.tv/sler. Alright, what are we going to do? Redacted on top, what'...swlkraxum
yellowcoderyellowcoder.hashnode.dev·Mar 18, 2024Axum - Hello World !Axum is a web application framework that focuses on ergonomics and modularity. This yellowcoder-tibbit tells you about a simple Axum - “Hello World!” examples you can get quickly started with by following steps given in repo. use axum::{response::Htm...Rust
Rustafarian Devrustafarian-dev.hashnode.dev·Aug 30, 2023Axum, htmx and Postscript for fun and profit.I was thinking of a fun project to work on, and then I remembered reading about someone writing an HTTP server in Postscript. When searching, I came across this article: https://www.oreilly.com/openbook/cgi/ch06_02.html.Not exactly what I was looking...1 like·256 readsRust
Nicolas Fränkelfrankel.hashnode.dev·May 4, 2023Server-side rendering in Rust - a Dall.E use-caseLast week, I decided to see the capabilities of OpenAI's image generation. However, I noticed that one has to pay to use the web interface, while the API was free, even though rate-limited. Dall.E offers Node.js and Python samples, but I wanted to ke...13 likes·33 readsRust
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Apr 18, 2023FeaturedBuilding a Proxy Server in Rust with Axum | Rust.In this article, we are going to build a proxy server using the Rust programming language and the Axum framework. The server is designed to block websites defined in a text file. We will use Axum's http-proxy example and add the feature to block the ...38 likes·3.3K readsRust
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Mar 27, 2023How to Monitor Your Axum App with Prometheus and Grafana.DISCLAIMER: This article will focus on how to integrate the app with Prometheus and Grafana. Learn how to monitor an Axum app with Prometheus and Grafana. This article provides instructions for installing Prometheus and Grafana, adding Prometheus as ...1.4K readsRust
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Jan 5, 2023Adding logging and tracing to an Axum App | Rust.DISCLAIMER: This is not a comprehensive article about logging or tracing. The service we will build is really simple, with an endpoint and with examples showing logs in our command line, JSON logs, tracing, and how to generate log files. For this tas...1 like·8.3K readsRust
ADEOYE Adefemiopeolluwa.hashnode.dev·Sep 23, 2022How to Set up an Email Service in RustHey there 👋, The following content is an extract (and documentary) of a project I'm currently working on. I hope to put together bits I've picked up on my journey, learning Rust, as well as one of its web frameworks; Axum. Overview Ermm, So what is ...4 likes·876 readsRust