45 releases

0.10.0 Mar 7, 2023
0.9.2 Jul 1, 2022
0.9.1 Apr 8, 2022
0.8.0 Oct 23, 2020
0.2.1 Dec 31, 2018

#864 in Web programming

Download history 815/week @ 2023-12-12 630/week @ 2023-12-19 349/week @ 2023-12-26 419/week @ 2024-01-02 806/week @ 2024-01-09 825/week @ 2024-01-16 718/week @ 2024-01-23 695/week @ 2024-01-30 936/week @ 2024-02-06 1087/week @ 2024-02-13 969/week @ 2024-02-20 811/week @ 2024-02-27 794/week @ 2024-03-05 1039/week @ 2024-03-12 666/week @ 2024-03-19 898/week @ 2024-03-26

3,551 downloads per month
Used in 21 crates (19 directly)

MIT license

365KB
7.5K SLoC

crates.io version crates.io downloads docs.rs

Website | Discord


Seed is a Rust front-end framework for creating fast and reliable web apps with an Elm-like architecture.

  • completely written in Rust, including the templating system (e.g. div! macro).
  • built-in state management that is based on the Elm architecture.
  • clear and extensive documentation for Rust beginners and pros alike.
  • WebAssembly.

Why Seed?

Seed allows you to develop the front-end with all the benefits of Rust, meaning speed, safety, and too many more things to count.

The Seed templating system uses a macro syntax that makes Rustaceans feel right at home. This means linting, formatting, and commenting will work, and it's all in Rust. This is opposed to a JSX-like syntax that relies on IDE extensions to improve the developer experience.

Why not Seed?

Getting Started

To get started right away, we can use the quickstart template:

cargo install cargo-generate
cargo install trunk
cargo install wasm-bindgen-cli
cargo generate --git https://github.com/seed-rs/seed-quickstart.git --name seed-quickstart
cd seed-quickstart
trunk serve

If you get an error about wasm being linked against a different version of wasm-bindgen, just follow the suggestion to run cargo update -p wasm-bindgen. This will fix the linkings.

You should now see a working counter app in your browser at localhost:8080.

Getting into Seed

The Seed website and the library docs are the best way to learn about the functionalities of Seed.

The Seed examples are another good resource.

Trunk is the recommended application bundler for Seed. Seed projects are typically run with trunk serve instead of cargo run. You might also see cargo make start project_name in the examples. Going forward, we recommend using Trunk.

Seed Styles is a styling library for Seed to create global and scoped styles.

To use web APIs, there is web-sys which is a part of the wasm-bindgen project. wasm-bindgen is a dependency of Seed.

There are also two template repositories. However, they are not currently up to date.

FAQ

How stable is Seed?

As a framework, Seed is mostly feature-complete. You can build complete web apps in Seed. Projects built in Seed do use Rust stable. Being in Rust, it's easy to create robust, predictable programs.

What's next for Seed?

Seed is not maintained at the moment but if you want to see some features and bring a budget, feel free to contact us.

Documentation

Resources

Contributing

See CONTRIBUTING.md.

Supported By

See BACKERS.md.

Dependencies

~12MB
~222K SLoC