From 65bba040c512434e42955954ac343389c758ed46 Mon Sep 17 00:00:00 2001 From: Kushajveer Singh Date: Mon, 21 Apr 2025 08:49:05 -0400 Subject: [PATCH] Add Fullstack rust book --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index c461f6b..d4ed51f 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,18 @@ Write Powerful Rust Macros is a comprehensive guide to creating macros in Rust. The Secrets of Rust: Tools is aimed at those who have learned the basics of Rust, and would like to start writing useful programs with it. The book starts very simply, and works through developing a series of increasingly challenging projects, including a memo tool and a weather API client, guided by tests. Along the way, readers will learn some useful patterns and practices for Rust programs, and gain experience with important crates such as `clap`, `anyhow`, and `serde`. +### [Fullstack Rust](https://www.newline.co/fullstack-rust) + + + +The Fullstack Rust book is the complete guide to building fast, production-ready Rust apps. + +The Rust language is a way to write incredibly fast - and safe - code. It's being used to build tools at Google, Facebook, Amazon, and many other companies where performance is critical. + +While there are some good resources on how to learn the Rust programming language by itself, what these other books don't teach is how to build applications with Rust. + +Fullstack Rust solves that. In this book we show you how to use Rust to build incredibly fast web-servers, build command-line tools, and compile apps to run in the browser with Web Assembly (WASM). + **Advanced Books** ---