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
- Host: GitHub
- URL: https://github.com/trimorphdev/fore
- Owner: trimorphdev
- Created: 2022-05-20T22:55:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T14:10:11.000Z (about 3 years ago)
- Last Synced: 2025-03-02T14:51:27.634Z (3 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: