Files
tuono/README.md
T

95 lines
2.9 KiB
Markdown
Raw Normal View History

2024-05-12 21:52:04 +02:00
<p align="center">
2024-06-03 20:59:39 +02:00
<img src="https://raw.githubusercontent.com/Valerioageno/tuono/main/assets/logo.png" width="200px">
2024-05-12 21:52:04 +02:00
</p>
<h1 align="center">Tuono<br>The react/rust fullstack framework</h1>
2024-05-18 11:50:56 +02:00
<p align="center">
⚠️ This project is under heavy development. API might drastically change ⚠️
</p>
2024-06-16 10:21:16 +02:00
<div align="center">
<img src="https://github.com/Valerioageno/tuono/actions/workflows/rust.yml/badge.svg" />
2024-06-16 11:26:33 +02:00
<img src="https://github.com/Valerioageno/tuono/actions/workflows/typescript.yml/badge.svg" />
2024-06-16 10:21:16 +02:00
</div>
<br>
<br>
2024-05-18 11:50:56 +02:00
2024-05-02 20:49:46 +02:00
Tuono (Italian word for "thunder", pronounced /2 Oh No/).
Why Tuono? Just a badass name.
2024-04-27 10:10:50 +02:00
2024-06-21 19:33:01 +02:00
> Check out the [tutorial](https://github.com/Valerioageno/tuono/blob/main/docs/tutorial.md) to get started.
2024-06-06 20:54:09 +02:00
2024-06-05 21:17:26 +02:00
## Introduction
2024-06-21 19:33:01 +02:00
**NodeJs/Deno/Bun are the only runtimes that allow a React app to be fullstack right? (no)**
2024-06-05 21:17:26 +02:00
2024-06-21 19:33:01 +02:00
Tuono is a fullstack React framework with the server side written in Rust.
Because of this Tuono is extremely fast and the requests are handled by multithreaded Rust server.
React is still React - it is just superpowered.
**Rust is an hard language then writing server side code is hard as well right? (no again)**
Tuono provides a collection of utilities to handle the server side code seamlessly with the React code.
Each server side route is managed with a separate file alongside the React route (the client/server
logic matching is handled by Tuono itself).
2024-06-05 21:17:26 +02:00
2024-06-17 13:45:21 +02:00
## Features
2024-06-21 19:33:01 +02:00
- 🟦 Typescript
- 🌐 Routing
- 🔥 Hot Module Reload
- 🍭 CSS modules
- 📨 Server Side Rendering
- 🌐 Multi thread backend
- Create custom APIs*
- Image optimization*
- Build optimization*
- Server streamed content*
2024-06-17 13:45:21 +02:00
2024-06-21 19:33:01 +02:00
> *Development in progress
2024-06-05 21:17:26 +02:00
2024-06-21 19:33:01 +02:00
## Getting started
2024-06-05 21:17:26 +02:00
2024-06-21 19:33:01 +02:00
As already mentioned above I strongly suggest to take a look to the
[tutorial](https://github.com/Valerioageno/tuono/blob/main/docs/tutorial.md).
2024-05-18 11:50:56 +02:00
2024-06-21 19:33:01 +02:00
Tuono is basically a CLI that provides all the commands to handle the fullstack project.
To download it you need [cargo](https://doc.rust-lang.org/cargo/) which is the [rust](https://www.rust-lang.org/)
package manager.
2024-05-18 11:50:56 +02:00
2024-06-21 19:33:01 +02:00
To download and install it you just need to run `cargo install tuono`.
2024-05-18 20:45:35 +02:00
2024-06-21 19:33:01 +02:00
To create a new project run `tuono new [NAME]` (optionally you can pass the `--template` flag - check the
[examples](https://github.com/Valerioageno/tuono/tree/main/examples) folder).
2024-05-18 20:45:35 +02:00
2024-06-21 19:33:01 +02:00
Then to run the local development environment run inside the project folder `tuono dev`
2024-05-18 11:50:56 +02:00
2024-06-21 19:33:01 +02:00
> 💡 The `tuono build` command is not ready yet - I'm working on it right now.
## Requirements
- rust
- cargo
- node
- pnpm (other package managers support will be added soon)
2024-04-27 10:10:50 +02:00
## Folder structure
```
2024-06-15 14:36:09 +02:00
├── package.json
├── public
├── src
│ ├── routes
│ └── styles
├── Cargo.toml
├── README.md
└── tsconfig.json
2024-04-27 10:10:50 +02:00
```
2024-05-11 15:08:49 +02:00
2024-06-17 13:45:21 +02:00
## Contributing
Any help or suggestion will be appreciated.
2024-06-05 21:17:26 +02:00
## License
2024-05-11 15:08:49 +02:00
2024-06-05 21:17:26 +02:00
This project is licensed under the MIT License.