I am mind-blown by all the crazy stuffs that modern web development is capable.
@codetothemoon Жыл бұрын
me too!
@mdkhorshed20432 жыл бұрын
Very very thanks, sir. You've saved me from finding how to use SSR in Yew. Keep making valuable videos like this one.
@codetothemoon2 жыл бұрын
Thanks for watching, glad you found it valuable!
@jacobwilliams22462 жыл бұрын
Such quality content keep it up, and may yew web innovations keep on coming
@codetothemoon2 жыл бұрын
thank you!
@dario.lencina2 жыл бұрын
Neat! SSR reduces the “page load” time significantly 👏👏 this is awesome!
@wtho2 жыл бұрын
You mean first paint. The time it takes until a website is interactive is actually a bit slower for SSR websites, as additional HTML content is transmitted.
@dario.lencina2 жыл бұрын
Yes
@codetothemoon2 жыл бұрын
Agree! Saw you have some Yew content as well, put it on my "to watch" list!
@dario.lencina2 жыл бұрын
Sweet 🤗🤗
@dario.lencina2 жыл бұрын
@@codetothemoon yay!! let me know what you think!!
@JohnWalton_NET Жыл бұрын
Very clear explanation
@codetothemoon Жыл бұрын
thank you!
@georgemanning23062 жыл бұрын
Awesome! Love your content 👍
@codetothemoon2 жыл бұрын
Thanks George!
@rajumondal42832 жыл бұрын
Correct me if I am wrong WA + rust(actix)+? DB ? What you suggest?
@codetothemoon2 жыл бұрын
The DB you use really depends heavily on your use case. If you are using AWS, check out a video I made last year called "Which AWS Database Should I Use?"
@AceofSpades5757 Жыл бұрын
Ssr and hydration support just dropped in Yew 0.20.0
@codetothemoon Жыл бұрын
Nice thanks for the heads up! I'm looking forward to using this release to see if anything has changed since I made this video
@billkolarik94232 жыл бұрын
SvelteKit lets you customize the server called an adapter. By default, it does provide the server for you.
@codetothemoon2 жыл бұрын
SvelteKit is amazing - we really need something similar in the Rust world!
@billkolarik94232 жыл бұрын
@@codetothemoon Yew and Blazor have been doing an incredible job outside of JS/TS. Looking forward to Rust's future!
@codetothemoon2 жыл бұрын
me too!
@altairbueno56372 жыл бұрын
Yew rules!!
@codetothemoon2 жыл бұрын
💪
@Turalcar9 ай бұрын
1:53 I'd keep unwrap() here in production. If ./dist/index.html is missing I want the server to panic as quickly and as loudly as possible
@jeffg46862 жыл бұрын
can this be used like this in PAAS deployment scenarios where you might not have ability to use symbolic links. I know you can always go to docker and do it there, but more config work too. Perhaps docker is better option for this scenario than a more pure paas model. Or was the symbolic link just for a development environment ? Wasn't really seeing why it would be needed - what happens without it?
@codetothemoon2 жыл бұрын
yeah the symlink is only for the development environment - check out the "Full Stack Rust" video for an example Dockerfile that you might use in a production setting.