An open API service indexing awesome lists of open source software.

https://github.com/trimorphdev/fore

A full stack web framework for Rust
https://github.com/trimorphdev/fore

Last synced: 3 months ago
JSON representation

A full stack web framework for Rust

Awesome Lists containing this project

README

        

# Fore
*A full stack web framework for Rust.*

## Features
- **Server-side rendering**: for improved loading speeds and better SEO.
- **Component based**: modular components makes designing web pages easier.
- **RSX** _**(Requires Nightly)**_: use inline HTML as Fore components in Rust. Made extremely fast with the use of Rust's procedural macro system.

## Example
```rust
use fore::prelude::*;

fn main() {
println!("{}", rsx! {


Hello, world!

}.render()); // =>
Hello, world!

}
```

## Contributing
Use the right [Gitmoji](https://gitmoji.dev) for your commits. Please [create an issue](https://github.com/trimorphdev/fore/issues/new) if you have any questions, thanks for contributing! :heart: