+
-
-
+
+
**Tuono is a full-stack web framework for building React applications using Rust as the backend with
a strong focus on usability and performance.**
@@ -48,7 +48,7 @@ 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](https://github.com/Valerioageno/tuono/tree/main/benches)).
+(check the benchmarks [here](https://github.com/tuono-labs/tuono/tree/main/benches)).
## Getting started
@@ -61,7 +61,7 @@ Then run `cargo install tuono`.
To list all the available commands, run `tuono -h`
To create a new project, run `tuono new [NAME]` (optionally, you can pass the `--template` (or `-t`) flag - check the
-[examples](https://github.com/Valerioageno/tuono/tree/main/examples) folder).
+[examples](https://github.com/tuono-labs/tuono/tree/main/examples) folder).
Then, to run the local development environment, install the JS dependencies (`npm install`) and run inside the project folder `tuono dev`
diff --git a/apps/documentation/src/components/edit-page/edit-page.tsx b/apps/documentation/src/components/edit-page/edit-page.tsx
index 80b6959a..e285f3b1 100644
--- a/apps/documentation/src/components/edit-page/edit-page.tsx
+++ b/apps/documentation/src/components/edit-page/edit-page.tsx
@@ -4,7 +4,7 @@ import { IconEdit } from '@tabler/icons-react'
import { useRouter } from 'tuono'
const GITHUB_URL =
- 'https://github.com/Valerioageno/tuono/tree/main/apps/documentation/src/routes'
+ 'https://github.com/tuono-labs/tuono/tree/main/apps/documentation/src/routes'
export default function EditPage(): JSX.Element {
const { pathname } = useRouter()
diff --git a/apps/documentation/src/components/navbar/actions.tsx b/apps/documentation/src/components/navbar/actions.tsx
index cace620b..3a00fdce 100644
--- a/apps/documentation/src/components/navbar/actions.tsx
+++ b/apps/documentation/src/components/navbar/actions.tsx
@@ -27,7 +27,7 @@ export default function Actions(): JSX.Element {
variant="default"
size="lg"
aria-label="Check the project on github"
- href="https://github.com/Valerioageno/tuono"
+ href="https://github.com/tuono-labs/tuono"
target="_blank"
component="a"
>
diff --git a/apps/documentation/src/routes/documentation/index.mdx b/apps/documentation/src/routes/documentation/index.mdx
index 30484cfd..73218963 100644
--- a/apps/documentation/src/routes/documentation/index.mdx
+++ b/apps/documentation/src/routes/documentation/index.mdx
@@ -36,7 +36,7 @@ Tuono addresses the following two limits:
#### NodeJs/Deno/Bun are the only runtimes that allow a React app to be server-side rendered (SSR)? (no)
-Tuono is the first full-stack React framework with the server side written in Rust (check the [ssr-rs](https://github.com/Valerioageno/ssr-rs) crate).
+Tuono is the first full-stack React framework with the server side written in Rust (check the [ssr-rs](https://github.com/tuono-labs/ssr-rs) crate).
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.
@@ -51,4 +51,4 @@ The routing is handled by Tuono based on the files defined within the `./src/rou
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](https://github.com/Valerioageno/tuono/tree/main/benches)).
+(check the benchmarks [here](https://github.com/tuono-labs/tuono/tree/main/benches)).
diff --git a/examples/tuono-app/src/routes/index.tsx b/examples/tuono-app/src/routes/index.tsx
index faa78cf7..719f8ea6 100644
--- a/examples/tuono-app/src/routes/index.tsx
+++ b/examples/tuono-app/src/routes/index.tsx
@@ -2,47 +2,47 @@ import type { JSX } from 'react'
import type { TuonoProps } from 'tuono'
interface IndexProps {
- subtitle: string
+ subtitle: string
}
export default function IndexPage({
- data,
- isLoading,
+ data,
+ isLoading,
}: TuonoProps{data?.subtitle}
- - Github - -{data?.subtitle}
+ + Github + +