Been using Blazor WASM in production for years. It’s great. It will be GOAT when it supports running ONNX models with GPU acceleration.
@IAmTimCorey3 ай бұрын
That seems more like a desktop feature rather than a WASM feature.
@edgetthilimire10773 ай бұрын
@@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.
@spauldingexperience2 ай бұрын
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-j4e2 ай бұрын
This is a question better suited for stackoverflow...
@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.
@andergarcia11152 ай бұрын
Thanks Master, for sharing valuable insights to keep us ahead.
@IAmTimCorey2 ай бұрын
You are welcome.
@keyser4563 ай бұрын
Skipping over the Authentication for Blazor WASM. Good move, Tim. It's a freaking nightmare.
@EekChocolate3 ай бұрын
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.
@edgetthilimire10773 ай бұрын
I assess the difficulty level to be equivalent to angular/react if you’re doing JWT
@keyser4563 ай бұрын
@@EekChocolate I had to turn to IdentityServer, and getting that to play nice with SSL + CORS via SignalR... I got there, eventually, but yeesh!
@IAmTimCorey3 ай бұрын
I'm working on some demos for authentication with WASM. Fun times.
@montytrollic3 ай бұрын
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.
@waleedbensumaidea39473 ай бұрын
thank you so much for this video , it would be great if you come back to make advanced lessons about blazor
@IAmTimCorey3 ай бұрын
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/
@JohnMarsing3 ай бұрын
Looking for more videos on this. You mentioned local storage, I was wondering if you could leverage SQLite as one of the videos Thanks
@IAmTimCorey3 ай бұрын
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Ай бұрын
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Ай бұрын
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Ай бұрын
@@IAmTimCorey I hope for that, it's great technology. Thank you very much for the response. I appreciate it.
@njumuleather280328 күн бұрын
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.khattab3 ай бұрын
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
@IAmTimCorey3 ай бұрын
WASM is a great option for hitting that middle ground between desktop app and website.
@AL-kn4yx3 ай бұрын
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?
@IAmTimCorey3 ай бұрын
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.
@cenkyenikoylu26703 ай бұрын
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.
@IAmTimCorey3 ай бұрын
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-t9t3 ай бұрын
@@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.
@uppercat72683 ай бұрын
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?
@IAmTimCorey3 ай бұрын
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.
@uppercat72683 ай бұрын
@@IAmTimCorey Thanks for your comprehensive answer.
@AdeyinkaAdegbenro3 ай бұрын
@@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.
@undefined4183 ай бұрын
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
@keyser4563 ай бұрын
Blazor is Microsoft's entry into WASM.
@IAmTimCorey3 ай бұрын
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.
@undefined4183 ай бұрын
@@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)
@undefined4183 ай бұрын
emscripten is what I ment
@alirezakarimi868523 күн бұрын
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.
@IAmTimCorey19 күн бұрын
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.
@johaneklund903 ай бұрын
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?
@IAmTimCorey3 ай бұрын
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.
@johaneklund903 ай бұрын
@@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.
@andresarias53123 ай бұрын
what's the Best way to Manage user session in Blazor WASM Standalone project? is it possible to use cookies?
@IAmTimCorey3 ай бұрын
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.
@ishfaqbabar11923 ай бұрын
hi, Please make a video to design and implement a dashboard using SignalR and blazor in .net 8
@IAmTimCorey3 ай бұрын
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/
@JovenAlbarida3 ай бұрын
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
@victorene36083 ай бұрын
Exactly... What's wrong with mvc core coupled with signalr?
@keyser4563 ай бұрын
@@victorene3608 It's not a SPA (and no PWA). Totally different paradigm.
@kristiadhy3 ай бұрын
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.
@IAmTimCorey3 ай бұрын
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.
@ahmedadam66253 ай бұрын
blazor , vue ,react ,angular or svelte for newcomer asp.net core developer?
@IAmTimCorey3 ай бұрын
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.
@ahmedadam66253 ай бұрын
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?