Hacker News new | ask | show | jobs
by zhiel 1731 days ago
They are pretty much identical. Seed has better docs, Yew has a promise for multi-threaded stuff, but its not very well documented (or even working). I've tried projects with both and the nice thing with Yew is that the syntax for HTML is kinda compatible with the actual thing (think JSX.) Seed however is macros only. Both seem to compile in the same time, but I would bet there would be differences on bigger projects (which there are none atm?)
2 comments

Re big projects: I'm (sort of) using Seed on web-based scheduling and training software used by 7 operational fighter squadrons.

The most complicated pages are in React/TS (eg the actual scheduling board), and the Seed pages are/were mostly simpler ones, like tracking qualifications, personalized schedules etc. I'm actively rewriting the smaller pages from Seed/Rust and TS/React to HTML/CSS/JS for performance and simplicity reasons.

I do like the JSX feel of Yew, but the docs are definitely lacking. And the latest changes on master have changed a ton of stuff.