Explore >> Select a destination


You are here

www.shuttle.dev
| | docs.rs
1.8 parsecs away

Travel
| | Shuttle - Deploy Rust apps with a single command
| | www.shuttle.rs
0.7 parsecs away

Travel
| | Learn what OAuth2 can do for your web apps. Explore how you competently can use OAuth in your web application without stress. Make it easier than ever for your users to use your application.
| | tokio.rs
2.3 parsecs away

Travel
| | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more.
| | nguyenhuythanh.com
13.3 parsecs away

Travel
| In web development and deployment, most software engineers are familiar with either: Separating the built SPA and the backend (Client-Side Rendering), or Return HTML directly from the backend (Server-Side Rendering) I recently (re)discovered 1 that there is a third way: embedding the built SPA into the backend's binary file, and serving it directly. I think this is an elegant approach, as the pros are: Simpler deployment as we only have one binary file in the end Simpler code where we don't have to take into account CORS and the backend endpoint since the frontend and backend are served from the same origin 2 The cons are quite clear: