[Rust🦀] Rust Web Application Framework Actix Setup

未分類

# What is Actix?

Actix is one of the most high performance web framework written in Rust.

If you want to know in the detail, lets see the URL down below.

Actix
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust

# How to get started

You can see how to setup actix and tutorial at the follwing URL down below.

Application | Actix
actix-web provides various primitives to build web servers and applications with Rust. It provides routing, middleware, pre-processing of requests, post-process...

# How to rebuild at runtime

You have to install additional cargo binary crate.

```

cargo install cargo-watch

```

*YOU HAVE TO HAVE GIT REPOSITORY IN YOUR RUST PROJECT TO WORK `cargo watch` !!!!*

After set git repository in your Rust project, you only execute the following command to run and watch.(I used to using Flutter I wii call `hot reload`!)

```

cargo watch -x run

```

コメント

タイトルとURLをコピーしました