Tuono is a full-stack React framework with the server side written in Rust. Because of this, Tuono is extremely fast, and the requests are handled by

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-11-14 02:00:03

Tuono is a full-stack React framework with the server side written in Rust. Because of this, Tuono is extremely fast, and the requests are handled by a multithreaded Rust server. React is still React - it is just superpowered.

Tuono provides a collection of utilities to handle the server side code seamlessly with the React code. Each server-side route is managed in a separate file alongside the React route. The routing is handled by Tuono based on the files defined within the ./src/routes directory.

The Tuono API tries to stick as much as possible to the Next.js one (or at least takes a huge inspiration from it). The major difference is the backend system. While Next.js relies entirely on Node/Deno/Bun, Tuono runs the server without any intermediary runtime. This enables impressive performance improvements (check the benchmarks here).

Tuono is the CLI that provides all the needed commands to handle the full-stack project. To download it is required cargo, which is the rust package manager.

Leave a Comment