Rust Web Development
暫譯: Rust 網頁開發
Gruber, Bastian
- 出版商: Manning
- 出版日期: 2023-01-18
- 定價: $1,800
- 售價: 9.0 折 $1,620
- 語言: 英文
- 頁數: 400
- 裝訂: Quality Paper - also called trade paper
- ISBN: 1617299006
- ISBN-13: 9781617299001
-
相關分類:
Rust 語言、程式語言
-
相關翻譯:
Rust Web 開發 (簡中版)
立即出貨 (庫存=1)
買這商品的人也買了...
-
$880$695 -
$580$458 -
$750$593 -
$580$458 -
$599$569 -
$1,000$790
相關主題
商品描述
Create bulletproof, high-performance web apps and servers with Rust.
In Rust Web Development you will learn:
• Handling the borrow checker in an asynchronous environment
• Learning the ingredients of an asynchronous Rust stack
• Creating web APIs and using JSON in Rust
• Graceful error handling
• Testing, tracing, logging, and debugging
• Deploying Rust applications
• Efficient database access
Rust Web Development is a pragmatic, hands-on guide to creating server-based web applications with Rust. If you’ve designed web servers using Java, NodeJS, or PHP, you’ll instantly fall in love with the performance and development experience Rust delivers. Hit the ground running! Author Bastian Gruber’s sage advice makes it easy to start tackling complex problems with Rust. You’ll learn how to work efficiently using pure Rust, along with important Rust libraries such as tokio for async runtimes, warp for web servers and APIs, and reqwest to run external HTTP requests.
Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.
About the technology
If you’re sick of cookie-cutter web development tools that are slow, resource hungry, and unstable, Rust is the solution. Rust services deliver rock-solid safety guarantees, an amazing developer experience, and even a compiler that automatically prevents common mistakes!
About the book
Rust Web Development, teaches you to build server-side web apps using Rust, along with important Rust libraries like tokio for async runtimes, warp for web servers and APIs, and reqwest to run external HTTP requests. The book is packed full of examples, code samples, and pro tips for setting up your projects and organizing your code. As you go, you’ll build a complete Q&A web service and iterate on your code chapter-by-chapter, just like a real development project.
What's inside
• Handle the borrow checker in an asynchronous environment
• Build web APIs and handle JSON
• Compose a tech stack for asynchronous Rust development
• Handle errors gracefully
• Test, trace, log, and debug
• Deploy Rust applications to multiple environments
About the reader
This book is for web developers familiar with Java, Node, or Go, and the absolute basics of Rust.
商品描述(中文翻譯)
建立防彈、高效能的網頁應用程式和伺服器,使用 Rust。
在《Rust 網頁開發》中,您將學習:
• 在非同步環境中處理借用檢查器
• 學習非同步 Rust 堆疊的組成要素
• 創建網頁 API 並在 Rust 中使用 JSON
• 優雅的錯誤處理
• 測試、追蹤、日誌記錄和除錯
• 部署 Rust 應用程式
• 高效的資料庫存取
《Rust 網頁開發》是一本務實的、實作導向的指南,教您如何使用 Rust 創建基於伺服器的網頁應用程式。如果您曾經使用 Java、NodeJS 或 PHP 設計過網頁伺服器,您將立即愛上 Rust 所帶來的效能和開發體驗。馬上開始吧!作者 Bastian Gruber 的明智建議使您能輕鬆開始解決複雜的問題。您將學會如何有效地使用純 Rust,並使用重要的 Rust 函式庫,如 tokio 用於非同步執行環境、warp 用於網頁伺服器和 API,以及 reqwest 用於執行外部 HTTP 請求。
購買印刷版書籍可獲得 Manning Publications 提供的免費 PDF、Kindle 和 ePub 格式電子書。
關於技術
如果您厭倦了那些緩慢、資源消耗大且不穩定的千篇一律的網頁開發工具,Rust 是解決方案。Rust 服務提供堅如磐石的安全保證、驚人的開發者體驗,甚至還有一個自動防止常見錯誤的編譯器!
關於本書
《Rust 網頁開發》教您如何使用 Rust 建立伺服器端的網頁應用程式,並使用重要的 Rust 函式庫,如 tokio 用於非同步執行環境、warp 用於網頁伺服器和 API,以及 reqwest 用於執行外部 HTTP 請求。這本書充滿了範例、程式碼範本和專業提示,幫助您設置專案和組織程式碼。在學習過程中,您將建立一個完整的問答網頁服務,並逐章迭代您的程式碼,就像一個真正的開發專案。
內容概覽
• 在非同步環境中處理借用檢查器
• 建立網頁 API 並處理 JSON
• 為非同步 Rust 開發組成技術堆疊
• 優雅地處理錯誤
• 測試、追蹤、日誌記錄和除錯
• 將 Rust 應用程式部署到多個環境
讀者對象
本書適合熟悉 Java、Node 或 Go 的網頁開發者,以及對 Rust 的基本概念有初步了解的讀者。
作者簡介
Bastian Gruber is a Solutions Architect at Twilio Inc. He was part of the official Rust Async Working group, and founded the Rust and Tell Berlin MeetUp group. He has worked for one of the world's largest Digital Currency exchanges, using Rust on its core backend. He has over twelve years experience as a writer, and blogs regularly on Rust for LogRocket, his own blog, and other magazines and news outlets.
作者簡介(中文翻譯)
Bastian Gruber 是 Twilio Inc. 的解決方案架構師。他曾是官方 Rust Async 工作小組的成員,並創立了 Rust and Tell 柏林聚會小組。他曾在全球最大的數位貨幣交易所之一工作,並在其核心後端使用 Rust。他擁有超過十二年的寫作經驗,並定期在 LogRocket、自己的部落格以及其他雜誌和新聞媒體上撰寫有關 Rust 的文章。
目錄大綱
PART 1 INTRODUCTION TO RUST
1 Why Rust?
2 Laying the foundation
PART 2 GETTING STARTED
3 Create your first route handler
4 Implement a RESTful API
5 Clean up your codebase
6 Logging, tracing, and debugging
7 Add a database to your application
8 Integrate third-party APIs
PART 3 BRING IT INTO PRODUCTION
9 Add authentication and authorization
10 Deploy your application
11 Testing your Rust application
目錄大綱(中文翻譯)
PART 1 INTRODUCTION TO RUST
1 Why Rust?
2 Laying the foundation
PART 2 GETTING STARTED
3 Create your first route handler
4 Implement a RESTful API
5 Clean up your codebase
6 Logging, tracing, and debugging
7 Add a database to your application
8 Integrate third-party APIs
PART 3 BRING IT INTO PRODUCTION
9 Add authentication and authorization
10 Deploy your application
11 Testing your Rust application