Installation

Installation

Requirements

Tuono is a development environment built with Rust and TypeScript that generates a website using both languages. To work with Tuono, you'll need to have the following tools installed on your computer:

  • Rust - The Rust programming language tool chain (Go here for installing both rust and cargo)
  • Cargo - The rust package manager
  • NodeJs - The JavaScript runtime (Go here for installing both nodejs and npm)
  • npm or yarn or pnpm - A javaScript package manager

Node.js is only required for the development environment; the final output runs on a Rust server.

How to install

The tuono CLI is hosted on crates.io to download and install it, just run it on a terminal:

cargo install tuono

To check that it is correctly installed, run:

tuono --version

Run tuono -h to see all the available commands.

The React/Rust full-stack framework

Usage: tuono <COMMAND>

Commands:
  dev    Start the development environment
  build  Build the production assets
  new    Scaffold a new project
  help   Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version
Edit page