Adding CKEditor in Blazor with image upload
A simple tutorial on how CKEditor5 can be used in the Blazor server application with image upload within the server. There’s nothing special about CKEditor5 in Blazor, you just have to know how Blazor javascript interop works as this will give you the ability to use any javascript libraries to work with including CKEditor5. You don't find any explanation how Blazor's javascript interop works here, as I'm only focusing on adding editor in the page with basic functionality. Get CKEditor5 If you already have CKEditor5 in your project, you should check if “Image” and “Image upload” adapters are added to your CKEditor5. If not, add them because they are required in order for you to be able to work with image view and image upload. If you don’t have CKEditor5 or you want to update it, you can use CKEditor5 builder provided in the official site - https://ckeditor.com/ckeditor-5/online-builder/ Builder will ask to select the editor type (classic editor is used for this tutorial...