Blazor WebAssembly in .NET 8 - Why It Is Still Extremely Valuable

  Рет қаралды 15,748

IAmTimCorey

IAmTimCorey

Күн бұрын

Пікірлер: 62
@edgetthilimire1077
@edgetthilimire1077 3 ай бұрын
Been using Blazor WASM in production for years. It’s great. It will be GOAT when it supports running ONNX models with GPU acceleration.
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
That seems more like a desktop feature rather than a WASM feature.
@edgetthilimire1077
@edgetthilimire1077 3 ай бұрын
@@IAmTimCorey I did attempt ONNX with Maui Blazor, I dropped it in favor of Avalonia Blazor. This was due to lack of support for hardware acceleration on arm-Mac. I think Maui can do ONNX with hardware acceleration on arm-Mac now, I haven’t verified this yet. All that said, I still would like to be able to run ONNX models, with GPU acceleration, from the browser with Blazor. Don’t underestimate small models, and don’t overlook, the massive performance boost, from hardware acceleration. P.s. Thanks for the excellent content.
@spauldingexperience
@spauldingexperience 2 ай бұрын
I have yet to find an answer to this question. Have been looking everywhere! Nucance steps: 1) I have a blazor app and I load a standard blazor page. 2) I have a threaded background process that saves an unrelated HTM file to the file system. 3) Once that background process completes and the files changed, my original unrelated blazor page refreshes. 4) This is a nuisance when I'm writing 100 htm pages in the background With no way to turn this feature off in a production environment. Tim, you provide an excellent service and I have spoken with you in person before. I greatly respect and appreciate what you give to our development environments. I look forward to hearing your (and the community's) feedback on this topic. Thank you.
@lemonade2345-j4e
@lemonade2345-j4e 2 ай бұрын
This is a question better suited for stackoverflow...
@BigBlueRabbit
@BigBlueRabbit Ай бұрын
My (total guess) would be that you need to make sure your files are uploaded to a location on the server that is outside the folder your web app was served from. It might be that IIS is detecting a change to the folder contents and deciding it needs to serve up a new version of your web application to the user each time.
@andergarcia1115
@andergarcia1115 2 ай бұрын
Thanks Master, for sharing valuable insights to keep us ahead.
@IAmTimCorey
@IAmTimCorey 2 ай бұрын
You are welcome.
@keyser456
@keyser456 3 ай бұрын
Skipping over the Authentication for Blazor WASM. Good move, Tim. It's a freaking nightmare.
@EekChocolate
@EekChocolate 3 ай бұрын
If you're using cookie auth, it's not too bad. Every other method, though... yeah... Not great. Especially if you have to integrate your authentication with some kind of third-party software that doesn't abide by OAuth, Google, Facebook, or Microsoft Identity Platform standards.
@edgetthilimire1077
@edgetthilimire1077 3 ай бұрын
I assess the difficulty level to be equivalent to angular/react if you’re doing JWT
@keyser456
@keyser456 3 ай бұрын
@@EekChocolate I had to turn to IdentityServer, and getting that to play nice with SSL + CORS via SignalR... I got there, eventually, but yeesh!
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
I'm working on some demos for authentication with WASM. Fun times.
@montytrollic
@montytrollic 3 ай бұрын
Actually everyone on YT is doing that... there is small to none portion of videos about auth in Blazor. In most cases they just show some dead simple example with cookies usage and thats all. When you actually jump into Blazor and you start working on big project, you will hit the wall quite fast.
@waleedbensumaidea3947
@waleedbensumaidea3947 3 ай бұрын
thank you so much for this video , it would be great if you come back to make advanced lessons about blazor
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
@JohnMarsing
@JohnMarsing 3 ай бұрын
Looking for more videos on this. You mentioned local storage, I was wondering if you could leverage SQLite as one of the videos Thanks
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
For the browser, I typically just use LocalStorage instead of trying to make SQLite work. I find it easier and less problematic. I'll be doing a video or two on LocalStorage and how to use it.
@marko5734
@marko5734 Ай бұрын
Do you believe that in the near future there will be more job openings for Blazor? It's hard to find junior Blazor jobs..
@IAmTimCorey
@IAmTimCorey Ай бұрын
I do. It takes time for a new technology to be highly in demand since businesses don't just switch technologies quickly. Also, if a job is asking for ASP.NET Core developers, that could include Blazor. If not now, soon. Also, you will be using a lot of the same technologies, since they both use the same web framework.
@marko5734
@marko5734 Ай бұрын
@@IAmTimCorey I hope for that, it's great technology. Thank you very much for the response. I appreciate it.
@njumuleather2803
@njumuleather2803 28 күн бұрын
have you covered Blazor Server applications that handle session storage sample code where you keep logged user details and you can tell the logged User
@Omar.bin.khattab
@Omar.bin.khattab 3 ай бұрын
thanks tim .. i think wasm will be the new generation for web app that run over client side and i think other framework like angular and react will try to do it and i think security will be good in the future wasm is a sand box not like other framework like angular
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
WASM is a great option for hitting that middle ground between desktop app and website.
@AL-kn4yx
@AL-kn4yx 3 ай бұрын
Is Blazor on the way of making MVC and MVVM obsolete? Is there a point for someone who is starting with .NET and Blazor to learn MVC or MVVM?
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
MVC and MVVM are just design patterns. I'm assuming you are referring to ASP.NET Core MVC, which is a web project type named after the pattern it uses. There is definitely a benefit to learning MVC and the other web project types, since options are good. Not every situation will require the same solution.
@cenkyenikoylu2670
@cenkyenikoylu2670 3 ай бұрын
Hi Tim, Are you going to make a Login and Authorization video for WinUI in the real world soon? I think it is very important especially for NavigationView control which is used by everyone. There is no content creator supported by Microsoft for WinUI. I don't understand why this field is empty. There are many people in Blazor, MAUI or Azure but WinUI seems to be left empty. Thanks.
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
The reason why it is fairly empty is because WinUI isn't even well supported by Microsoft. They recently recommended people use WinForms or WPF for desktop development. WinUI is rather restricted in what it can do, which limits its usage in corporate environments.
@SteveC-t9t
@SteveC-t9t 3 ай бұрын
@@IAmTimCorey Actually there was a video just posted on the Windows Dev channel called "Building a Modern, Native Application for Windows: Which UI Framework Should You Choose?" where they said Microsoft recommends using WPF or WinUI. So they keep saying publically that their focus is on WinUI and WPF.
@uppercat7268
@uppercat7268 3 ай бұрын
When using the PWA option and installing the app on the client, what happend if there is a new version/update of that appilcation. Will the app on the client get updated automatically or is the user forced to reintall the app?
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
When a new version is out (basically, an update to the website), the app will load the old version one more time. In the background, it will download the changes to the site. Then, when the user next uses the app, they will use the new version. That way they can continue to use the older version until the new one is downloaded rather than having the app go down until the changes are downloaded.
@uppercat7268
@uppercat7268 3 ай бұрын
@@IAmTimCorey Thanks for your comprehensive answer.
@AdeyinkaAdegbenro
@AdeyinkaAdegbenro 3 ай бұрын
​@@IAmTimCorey, Blazor WASM PWA updated? I built an application sometimes ago, Blazor WASM PWA, after publishing changes, it never get downloaded no matter how many times I restart the application, I had to pull off the app and made it just Blazor WASM without PWA. It was an annoying effort.
@undefined418
@undefined418 3 ай бұрын
I really want WASM to succeed. I hate that blazor is used in most examples. Standalone is SO much better but a pain to figure out. Docs are all over the place in my opinion
@keyser456
@keyser456 3 ай бұрын
Blazor is Microsoft's entry into WASM.
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
I'm not sure what you mean by standalone WASM. Do you mean WASM running just JavaScript instead of Blazor? Because Blazor is how you run C# code on WASM. And Blazor makes it so easy to do what you need to do.
@undefined418
@undefined418 3 ай бұрын
@@IAmTimCorey Yes exactly! I've tried to play around with WASM. As fair as I know, it's how you run c# code in your browser. I've managed to run it within a django / react environment. My road to this environment was very bumpy. I've made a couple of emulators and I thought c# would be a bit faster. When reasearching this I found blazor. Blazor standalone, some wasm version without blazor at all, and that was about it I believe. That last one was/is interesting to me because I didnt need the blazor framework at all. (this was before the wasm update from a week back or so)
@undefined418
@undefined418 3 ай бұрын
emscripten is what I ment
@alirezakarimi8685
@alirezakarimi8685 23 күн бұрын
Please help me : This browser does not support WebAssembly. This problem has occurred in some clients with Windows 11 and google chrome, whose browser is updated.
@IAmTimCorey
@IAmTimCorey 19 күн бұрын
WebAssembly is supported by all of the major browsers, including Google Chrome: caniuse.com/wasm That means the feature is probably turned off in the browser's settings.
@johaneklund90
@johaneklund90 3 ай бұрын
So if I want my Blazor WebAssembly project to access and API with an API key. I should build another API that does that interaction and also stores all the sensitive information like the API key?
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
If you need to have sensitive information then yes, wrap that in an API. So yes, your API might call another API. That's ok.
@johaneklund90
@johaneklund90 3 ай бұрын
​@@IAmTimCorey Then restrict the access to the "middleware" in some way? By IP address or some other server setting, right? So that only the blazor webassembly site can use it.
@andresarias5312
@andresarias5312 3 ай бұрын
what's the Best way to Manage user session in Blazor WASM Standalone project? is it possible to use cookies?
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
It is possible to use cookies or SessionStorage. Either works. You hear horror stories about using SessionStorage/LocalStorage, but these are way overblown. The technical attack surface is slightly bigger, but we are talking about 0.01% vs 0.02%, if that.
@ishfaqbabar1192
@ishfaqbabar1192 3 ай бұрын
hi, Please make a video to design and implement a dashboard using SignalR and blazor in .net 8
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
@JovenAlbarida
@JovenAlbarida 3 ай бұрын
Valueable? But based on job post it has low demand as of now.. some SME are tired of Microsoft fast changing technology but with similar outcome.. Although I love this new Blazor thing, however it cannot give me additional money to provide food to table
@victorene3608
@victorene3608 3 ай бұрын
Exactly... What's wrong with mvc core coupled with signalr?
@keyser456
@keyser456 3 ай бұрын
@@victorene3608 It's not a SPA (and no PWA). Totally different paradigm.
@kristiadhy
@kristiadhy 3 ай бұрын
That's right, I'm learning Blazor and have been trying to build up a medium sized project as my portfolio, but it's so hard to find work. I love Blazor, but I still have to put food on the table.
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
Couple things here. First, you have to remember that companies don't start working on their enterprise applications overnight. The vast majority of companies have enterprise applications that are five years old or older. That's just the nature of enterprise applications. That means that they were built before Blazor was a thing. That means that a very few companies even had the option of using Blazor for their enterprise application. Secondary systems, sure, but their primary systems are almost always older technologies that have not been upgraded. That means you will see a LOT more MVC or even WebForms. That's also why you still see so many jobs asking for .NET Framework developers. Second, remember that Blazor is a project type on top of the ASP.NET Core web framework. That means that jobs that are asking for ASP.NET Core developers could be using Blazor (or could be considering it). Basically, any job that uses .NET (not .NET Framework) could be using Blazor or is considering it. This also means that even if you aren't using Blazor, you are using the skills that you want to grow if you want to get into Blazor.
@ahmedadam6625
@ahmedadam6625 3 ай бұрын
blazor , vue ,react ,angular or svelte for newcomer asp.net core developer?
@IAmTimCorey
@IAmTimCorey 3 ай бұрын
Since you are new, I would highly recommend you start with Blazor since it will keep you learning C# and allow you to go deeper in the language rather than spreading you thin in multiple languages and frameworks.
@ahmedadam6625
@ahmedadam6625 3 ай бұрын
you mean i start learning blazor,and after that i should learn js framework(vue,react,or angular)? or u mean blazor will be enough?
SIZE DOESN’T MATTER @benjaminjiujitsu
00:46
Natan por Aí
Рет қаралды 3,5 МЛН
Миллионер | 3 - серия
36:09
Million Show
Рет қаралды 2,1 МЛН
За кого болели?😂
00:18
МЯТНАЯ ФАНТА
Рет қаралды 3,2 МЛН
Is Blazor Better than React?
14:25
Gavin Lon
Рет қаралды 53 М.
AWS CEO - The End Of Programmers Is Near
28:08
ThePrimeTime
Рет қаралды 550 М.
Blazor WebAssembly ASP.NET Core Hosted in .NET 8 🔥
15:37
Patrick God
Рет қаралды 23 М.
Why I Don't Like Singletons
29:05
The Cherno
Рет қаралды 94 М.
.NET and C# are in trouble. Here is what I'd do.
10:57
Ed Andersen
Рет қаралды 106 М.
NVIDIA’s New AI: Stunning Voice Generator!
6:21
Two Minute Papers
Рет қаралды 78 М.
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН
Why Developers and Companies Hate .NET 9
10:56
Nick Chapsas
Рет қаралды 44 М.
164. What is the Future of Blazor? Should I Learn Blazor?
22:32
IAmTimCorey
Рет қаралды 57 М.
Blazor: Why 2024 Is The Year Of Blazor 🚀
9:40
Coder Foundry
Рет қаралды 26 М.
SIZE DOESN’T MATTER @benjaminjiujitsu
00:46
Natan por Aí
Рет қаралды 3,5 МЛН