https://github.com/salvo-rs/website
https://github.com/salvo-rs/website
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/salvo-rs/website
- Owner: salvo-rs
- Created: 2021-01-28T10:00:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T05:44:36.000Z (8 months ago)
- Last Synced: 2025-04-09T20:06:23.646Z (8 months ago)
- Language: MDX
- Homepage: https://salvo.rs
- Size: 5.33 MB
- Stars: 19
- Watchers: 6
- Forks: 48
- Open Issues: 0
-
Metadata Files:
- Readme: docs/README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
---
home: true
title: Home
heroImage: /images/logo-text.svg
heroText: null
actions:
- text: Get Started
link: /book/guide.html
type: primary
- text: Donate
link: /donate.html
type: secondary
features:
- title: Simplicity First
details: With only basic knowledge of Rust, you can write a powerful and efficient server comparable to the development speed of some Go web server frameworks.
- title: Powerful Features
details: Although it is simple, it is still powerful, with built-in Multipart, OpenAPI,HTTP2/3, LetsEncrypt, extract data from request, etc., which can meet the needs of most business scenarios.
- title: Performance
details: Thanks to the performance advantages of Rust, you can write extremely high-performance server-side applications very easily.
- title: Chainable tree router
details: Chainable tree routing system let you write routing rules easily and chains. You can use regex to constraint parameters.
- title: Middlewares
details: Flexible plugin API, allowing plugins to provide lots of plug-and-play features for your site.
- title: Stable after online
details: Rust's extremely secure mechanism allows you to have no worries after your website is online. You have more time to enjoy your life!
footer: MIT Licensed | Copyright © 2019-present Salvo Team
---
### Hello world!
@[code rust](../codes/hello/src/main.rs)
@[code toml](../codes/hello/Cargo.toml)