https://github.com/tudororban/angust
Rust GUI framework in Angular style
https://github.com/tudororban/angust
angular gui-framework rust
Last synced: 9 months ago
JSON representation
Rust GUI framework in Angular style
- Host: GitHub
- URL: https://github.com/tudororban/angust
- Owner: TudorOrban
- License: mit
- Created: 2024-10-04T20:22:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-23T18:21:24.000Z (over 1 year ago)
- Last Synced: 2025-08-18T07:12:12.754Z (10 months ago)
- Topics: angular, gui-framework, rust
- Language: Rust
- Homepage:
- Size: 4.57 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## Angust
Angust is a Rust GUI framework designed to bridge the gap between the safety and performance of Rust and the simplicity and scalability of web development. It provides an Angular-style API to develop dynamic UI applications, through reusable Components and associated HTML templates.



### Features
* Declaration of UI through standard **HTML - CSS**
* **Custom Components** with: HTML templates, reflective and reactive Component State, inputs and outputs, lifetime hooks
* HTML **Directives**: @if, @for, @onclick, supporting complex Rust expressions
* **Custom Services**: injectable singleton objects, supporting async operations and return to GUI thread for state updates
* Pre-made **Router**: object encapsulating common navigation functionality (route configuration, history, page caching etc.)
* **CLI tool**: provides commands for generating boilerplate Angust code for a smooth development experience
### How to use
To use Angust for your next app, follow these steps:
1. Ensure you have a newer version of Rust and Cargo installed.
2. Download the [Angust CLI tool](https://crates.io/crates/angust_cli) and add the path to environment variables.
3. Open your terminal in an appropiate folder and run:
`angust_cli create_project `
That's it, you can now run the app with `cd `, `cargo run`. Head over to the [Docs](https://tudororban.github.io/Angust) to learn how to use Angust's features.
### Status
In mid stages of development.
### Contributing
All contributions are warmly welcomed. Head over to [CONTRIBUTING.md](https://github.com/TudorOrban/Angust/blob/main/CONTRIBUTING.md) for details.