Skip to content

trimorphdev/fore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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! ❤️

About

A full stack web framework for Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages