Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 760 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 760 Bytes

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

use fore::prelude::*;

fn main() {
    println!("{}", rsx! {
        <Div>
            Hello, world!
        </Div>
    }.render()); // => <div>Hello, world!</div>
}

Contributing

Use the right Gitmoji for your commits. Please create an issue if you have any questions, thanks for contributing! ❤️