web (19 articles)

How to build a WebSocket server with Rust

12.05.2023 - 20m read - rust web websocket

In this post, I’ll show how implement a WebSocket server with Rust.


Iced.rs tutorial: How to build a simple Rust frontend web app

27.10.2021 - 39m read - rust web iced

In this post, I’ll show how to implement a frontend Rust web application using iced.rs.


Full-stack Rust: A complete tutorial with examples

26.09.2021 - 105m read - rust web redis

In this post, I’ll show how to implement a full-stack Rust web application.


Build a Rust + WebAssembly frontend web app with Yew

29.06.2021 - 44m read - rust web wasm yew

In this post, I’ll show how to implement a Rust frontend, WASM-based web application.


An introduction to profiling a Rust web application

12.05.2021 - 28m read - rust web profiling

In this post, I’ll show how to profile a Rust web application.


JWT authentication in Rust

05.12.2020 - 29m read - rust web jwt

In this post, I’ll show how to implement JWT authentication in a Rust web application.


Write a simple web service in Rust using hyper

03.12.2020 - 25m read - rust web hyper

In this post, I’ll show how to implement a Rust web application using the hyper library.


Easy guide to JSON input validation in Rust web services

28.11.2020 - 25m read - rust web json validation

In this post, I’ll show how to implement JSON input validation in a Rust web application.


Configuration management in Rust web services

12.11.2020 - 16m read - rust web config

In this post, I’ll show how to implement configuration management in a Rust web application.


File upload and download in Rust

01.11.2020 - 12m read - rust web upload download

In this post, we'll look at how to implement file upload and download in a Rust web application.


Template rendering in Rust

12.10.2020 - 31m read - rust web template rendering

In this post, we'll look at template rendering in a Rust web app.


Using Prometheus metrics in a Rust web service

05.10.2020 - 18m read - rust web prometheus

In this post, I’ll show how to add Prometheus metrics to a Rust web application.


Using MongoDB in a Rust web service

01.10.2020 - 15m read - rust web mongodb

In this post, we'll look at how to implement a Rust web service using MongoDB


Using Redis in a Rust web service

01.09.2020 - 21m read - rust web redis

In this post, I’ll show how to use Redis in a Rust web application.


End-to-end testing for Rust web services

01.09.2020 - 42m read - rust web testing end2end

In this post, I’ll show how to implement end-to-end testing in a Rust web application.


Packaging a Rust web service using Docker

01.08.2020 - 7m read - rust web docker

In this post, I’ll show how to put a Rust web application inside a Docker container, presenting two approaches with different tradeoffs.


Synchronized Asynchronous Job Runner in Rust

18.01.2020 - 15m read - Rust Async job runner web

In this post we'll implement a basic asynchronous job runner, which synchronizes job runs among several instances using Redis.


A Basic Web Application with Rust and Actix-web

07.04.2019 - 18m read - rust actix web timeular

As a first little project in Rust I thought I'd do something familiar, so I created a small web application, which we'll check out in this post.


Scrolling Endpoint with Kotlin and Spring Boot

16.09.2018 - 10m read - kotlin spring-boot web scrolling

In order to fetch huge amounts of data in a sane way, it often makes sense to scroll through the data instead of requesting it all at once. In this post, we will create a simple implementation of such a mechanism using Kotlin and Spring Boot 2.