Jones BeachforFrom Scratch Codeblog.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...Discuss·108 readsRust
Igor BerlenkoProguryeah.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'...Discussswlkraxum
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...DiscussRust
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...Discuss·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...Discuss·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 ...Adebola Akinsomi and 2 others are discussing this3 people are discussing thisDiscuss·38 likes·3.2K readsRustI do not have any knowledge in rust but I still find this interesting. The introductory part is nice👍🏻 7
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 ...Discuss·1.3K 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...Discuss·1 like·7.9K 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 ...Discuss·4 likes·852 readsRust
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Aug 22, 2022Deploying an Axum URL Shortener on Shuttle |Rust.I found Shuttle weeks ago while I was scrolling through Reddit, I found it really cool, and I want to try it immediately, and I thought it would be a great opportunity to use Axum, that which is a web framework I started to use recently. I don't have...Discuss·3 likes·289 readsRust