Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal: Server-side rendering #41

Closed
KSXGitHub opened this issue Dec 28, 2017 · 27 comments · Fixed by #2552
Closed

Proposal: Server-side rendering #41

KSXGitHub opened this issue Dec 28, 2017 · 27 comments · Fixed by #2552
Labels
Milestone

Comments

@KSXGitHub
Copy link

No description provided.

@RangerMauve
Copy link

Node.js supports WASM globals now, so this could potentially work, but I assume that stdweb and yew both assume a browser environment for JS interop, so it'll be a bit harder

@KSXGitHub
Copy link
Author

@RangerMauve A Rust server shouldn't require any foreign tool (such a Node.js) to do such thing.

@moldray
Copy link

moldray commented Dec 29, 2017

I think next.js is a good reference.

@KSXGitHub
Copy link
Author

What yew need right now is ability to render HTML string from view function.

I expect cargo web start server sends pre-rendered HTML to browser but what I received is a <script> tag instead. I assume that Rust code using yew is only meant to be converted to WASM.

@KSXGitHub
Copy link
Author

KSXGitHub commented Dec 29, 2017

@moldray

I think next.js is a good reference.

It uses ReactDOMServer

@therustmonk
Copy link
Member

Thank you for the issue! It's important thing. I think Rust is the best candidate to implement this kind of features. But it will take some time to implement it. Let's keep this issue opened.

@mtsr
Copy link

mtsr commented Jan 8, 2018

Another really interesting thing to do with server-side rendering is AOT rendering of all static routes, such as for a blog. That way you don't even need to run the server for simple sites, but can just deploy the static site.

There's a few examples of React blogs that work that way.

@naartjie
Copy link

Another really interesting thing to do with server-side rendering is AOT rendering of all static routes, such as for a blog. That way you don't even need to run the server for simple sites, but can just deploy the static site.

@mtsr I was also thinking about this. It looks like the html! macro is quite powerful, and I started wondering if something like GatsbyJS could be doable with yew, or if there are even simpler ways of solving the use-case for static sites.

@mtsr
Copy link

mtsr commented Feb 25, 2018

GatsbyJS is exactly what I was thinking of...

@ericmarkmartin
Copy link

What's the status of this feature? I'm new-ish to Rust and really liking this framework and I'd love to help out with this if it's being worked on.

@theashguy
Copy link

I’ve been spending a lot of time recently on converting some pretty large react apps to Gatsby and have a lot of opinions around what’s important. Would love to be part of bringing together this as a feature.

@KSXGitHub
Copy link
Author

GatsbyJS is exactly what I was thinking of...

GatsbyJS only render static pages, it does not render dynamic pages. I want yew capable of rendering dynamic pages (like Next.js).

@theashguy
Copy link

? Gatsby is just SSR React during build.

Oh you mean backend rendered dynamic pages? I think what you’d do is make the DOM macros be able to be used inside the view renderer of a web server like rocket or actix and then also have another pattern to use the same renderer in a custom configured CLI app that could be run on build. And then the DOM that either / both generate can be hydrated into a Yew app once the webasm is downloaded.

@theashguy
Copy link

The bigger question to my mind is how it aligns with the current goals of the Yew project? How would it be implemented in a way that compliments what we already have without sacrificing using it in its current use case to add the functionality we’re keen on? And how does it affect the current team? Is it something they even want as part of the project or should it be something entirely external that just uses Yew as a dependency.

@olebedev
Copy link

olebedev commented Apr 9, 2019

Hey @deniskolodin, any chance to see updates wrt this issue?

@jstarry
Copy link
Member

jstarry commented Mar 3, 2020

Here's a nice post about rehydrating state on client side after a server side render: https://joshwcomeau.com/react/the-perils-of-rehydration

@jstarry jstarry changed the title Server-side rendering Proposal: Server-side rendering Apr 27, 2020
@onelson
Copy link

onelson commented Jun 14, 2020

Something I've been thinking about is how to build something like Phoenix LiveView for rust projects.

I could totally see a combination of a rust service with websocket support pushing SSR yew content to the client which is then applied to the DOM via morphdom.

Wanted to chime in here since I hadn't seen this discussed elsewhere. It's an interesting idea but definitely requires some opinionated framework choices to implement successfully.

@jstarry
Copy link
Member

jstarry commented Jun 14, 2020

@onelson cool ideas! One of the current advantages of using a virtual dom in wasm is that it helps limits DOM API calls which require JS glue at the moment. I haven't run benchmarks on how much that slowdown is across different major browsers yet.

I think a liveview type framework would likely live on top of yew as a separate crate. Do you want to open another issue to discuss?

@onelson
Copy link

onelson commented Jun 14, 2020

Do you want to open another issue to discuss?

I'd be happy to kick off the discussion on a new issue, but I'd urge voices who have worked directly with this feature of Pheonix to participate in the discussion (I have not). I'm still unclear as to just how much overlap the goals of yew align with what's required for a LiveView-like setup. More research required.

This is something I've been thinking over since an article prompted Dan Abramov to tweet.

@damooo
Copy link

damooo commented Oct 29, 2020

Hey guys, i want to point towards svelte & sapper projects.

Svelte is a compiler unlike react, in that it compiles svelty-js to imperative js in many modes. like it can compile for browser target, and for ssr target. ssr compiled js is basic string concatenation in node. This way, ssr is blazing fast.

Here too we may compile it to a wasm target, and an efficient rust target for ssr.

@chpio
Copy link
Contributor

chpio commented Oct 29, 2020

@damooo i don't think that you can even compare non-vdom svelte/imba/... (or my poc lib in rust, that's blocked on GATs right now.) libs to vdom libs like react/yew etc. the basic principles are very different.

The vdom fraction is based on a dynamic (all the elements sit on the heap in Boxes) vdom that is built at runtime. There's no way you could resolve that at compile time without insane compiler optimizations.

@KSXGitHub
Copy link
Author

@damooo I don't know why you brought this up in an issue about server side rendering in which DOM manipulation mechanism is irrelevant.

@damooo
Copy link

damooo commented Oct 29, 2020

@KSXGitHub .

I just wanted to point out svelte's approach to ssr. Svelte compiles it's components to multiple targets, like for client, and for server. server-targetted build doesn't have anything to do with dom, but an effective ssr-specific component, which only performs string concatenation to generate html.

@KSXGitHub
Copy link
Author

KSXGitHub commented Oct 29, 2020

@damooo Ah, I didn't read all of your comment, sorry. Anyway, back to the topic, Rust has zero-cost abstraction which can be used to transform a Yew component into a string concatenation.

@Ciantic
Copy link

Ciantic commented Oct 29, 2020

@KSXGitHub is there an example of this? I couldn't figure out an API for that last time I tried. I wanted to create static site generator for my blog, and not use web assembly at all, just generate strings from components and store them to HTML files.

@stoically
Copy link
Contributor

stoically commented Oct 29, 2020

@Ciantic A bit random, but if your goal is really just to generate strings from HTML then maybe the html-to-string-macro example from syn-rsx is interesting. I'm using that for my site, though, served by warp - but could be used in a build script or written to a file after macro execution, I guess

@0x1af2aec8f957
Copy link

At present, most SSRs need to write specific code to complete.
In nodejs, you can use jsdom to do SSR, so there is no need to change the isomorphic code.
Rust needs a library similar to jsdom to implement the first access to server-side rendering, and subsequent requests use client-side rendering, and client-side rendering and server-side rendering do not need to deal with compatibility code.

@futursolo futursolo mentioned this issue Feb 12, 2022
3 tasks
@futursolo futursolo added this to the v0.20 milestone Mar 22, 2022
@futursolo futursolo mentioned this issue Mar 26, 2022
3 tasks
@ranile ranile added this to SSR Jul 2, 2022
@ranile ranile moved this to History in SSR Jul 2, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: History
Development

Successfully merging a pull request may close this issue.