Easily Deploy a Blazor WebAssembly App to Cloudflare | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (175).NET Core  (29).NET MAUI  (208)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (220)BoldSign  (15)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (101)Streamlit  (1)Succinctly series  (131)Syncfusion  (919)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (150)Chart  (132)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (633)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (508)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (11)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (597)What's new  (333)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Easily Deploy a Blazor WebAssembly App to Cloudflare

Easily Deploy a Blazor WebAssembly App to Cloudflare

In this blog, we are going to see how to deploy a Blazor WebAssembly (WASM) app with Syncfusion Blazor components in Cloudflare Pages.

Cloudflare is a global network that protects and accelerates websites, apps, and teams. Cloudflare Pages is one of its services. It is a JAMstack platform for developers to collaborate and deploy websites with static assets on.

The Syncfusion Blazor suite is a native UI components library. It has over 70 high-performance and responsive UI components for creating Blazor applications.

We have chosen WebAssembly instead of the server app for this blog because Cloudflare Pages hosts websites with only static assets. Blazor WebAssembly is a single-page application (SPA) framework for building web apps with static assets.

Prerequisites

  • .NET SDK: To build the Blazor WebAssembly app.
  • Git: To set up git in your local machine.
  • GitHub repository: To push the local WebAssembly app to GitHub and pull from it.
  • An account in Cloudflare.

Create a Blazor WebAssembly app

To create a new Blazor WASM app, run the following command in the command prompt (Windows), terminal (macOS), or command shell (Linux) based on your operating system.

dotnet new blazorwasm -o Cloudflare

Note: If you have not installed .NET SDK, you can do so here.

Create Blazor WebAssembly AppFor more details, refer to Creating a Blazor WebAssembly project using .NET CLI documentation.

We have created a basic Blazor WASM app. Now, run the WASM app in the browser using the following command.

cd Cloudflare
dotnet run

Run the Blazor Web Assembly App

Creating a Blazor WebAssembly App
Creating a Blazor WebAssembly App

Integrate Syncfusion Blazor components into app

Integrate Syncfusion Blazor components into your Blazor WASM app:

  1. To use Syncfusion Blazor components, install their NuGet packages. We’ll use the DataGrid component. Install the Syncfusion.Blazor.Grid and Syncfusion.Blazor.Themes (to reference Syncfusion component themes or stylesheets in the app) NuGet packages using the following command.
    dotnet add package Syncfusion.Blazor.Grid
    dotnet add package Syncfusion.Blazor.Themes
    dotnet restore

    Note: Check out the list of available NuGet packages for Syncfusion Blazor UI components.

  2. Now, register the Syncfusion Blazor service and import the Syncfusion namespaces.Open the _Imports.razor  file and import the Syncfusion.Blazor  and Syncfusion.Blazor.Grids  namespaces.
    _Imports.razor
    
    @using System.Net.Http
    @using System.Net.Http.Json
    …
    @using Syncfusion.Blazor
    @using Syncfusion.Blazor.Grids

    Then, in the Program.cs file, register the Syncfusion Blazor service.

    Program.cs
    
    using Cloudflare;
    using Microsoft.AspNetCore.Components.Web;
    using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
    using Syncfusion.Blazor;
     
    var builder = WebAssemblyHostBuilder.CreateDefault(args);
    builder.RootComponents.Add("#app");
    …
     
    builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });
     
    await builder.Build().RunAsync();
  3. Now, add the Syncfusion CSS and script references in your app and add the following code in the wwwroot/index.html file.
    Index.html
    
    <html lang="en">
     <head>
      <meta charset="utf-8" />
     ...
      <link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
      <script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
     </head>
     …
    </html>
  4. Finally, add the Syncfusion Blazor DataGrid component in the Pages/index.razor page.
    Pages/Index.razor
    
    @page "/"
     
    <SfGrid DataSource="@Orders" AllowPaging="true">
     <GridPageSettings PageSize="5"></GridPageSettings>
      <GridColumns>
       <GridColumn Field=@nameof(Order.OrderID) HeaderText="Order ID" TextAlign="TextAlign.Right" Width="120"></GridColumn>
       <GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer Name" Width="150"></GridColumn>
       <GridColumn Field=@nameof(Order.OrderDate) HeaderText=" Order Date" Format="d" Type="ColumnType.Date" TextAlign="TextAlign.Right" Width="130"></GridColumn>
       <GridColumn Field=@nameof(Order.Freight) HeaderText="Freight" Format="C2" TextAlign="TextAlign.Right" Width="120"></GridColumn>
      </GridColumns>
    </SfGrid>
     
    @code{
     public List<Order> Orders { get; set; }
     
     protected override void OnInitialized()
     {
       Orders = Enumerable.Range(1, 75).Select(x => new Order()
       {
         OrderID = 1000 + x,
         CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
         Freight = 2.1 * x,
         OrderDate = DateTime.Now.AddDays(-x),
       }).ToList();
     }
     
     public class Order {
       public int? OrderID { get; set; }
       public string CustomerID { get; set; }
       public DateTime? OrderDate { get; set; }
       public double? Freight { get; set; }
     }
    }

Now, run the application and you will get output like in the following image.

Integrating Syncfusion Blazor DataGrid Component in the WebAssembly App
Integrating Syncfusion Blazor DataGrid Component in the WebAssembly App

Push the Blazor WebAssembly app to a GitHub repository

Let’s see how to push our Blazor WebAssembly app to the GitHub repository and then deploy it in Cloudflare Pages.

I hope you have a fundamental understanding of git. If you are new to git, you can refer to this handbook.

Even if you are not well-versed in git, you can simply follow these steps:

  1. Create an account on GitHub.
  2. Then, install Git on your local machine.
  3. Finally, run the following commands in the location of the web app on your local machine.
    dotnet new gitignore
    git init
    git add -A
    git commit -m "Initial commit"
    git remote add origin https://github.com/yourgithubusername/githubrepo.git
    git branch -M main
    git push -u origin main

Note: For more details, check out the GitHub repository created with the Blazor WASM app demo.

Deploy the Blazor WebAssembly app in Cloudflare using the GitHub repository

Now, we have everything ready to deploy. Let’s go ahead and see the actual deploying process:

  1. Create an account in Cloudflare (a free account is enough).
  2. Log into the dashboard of Cloudflare and click on the Create Project button in the Pages section.
    Refer to the following image.Creating a new project in CloudFlare
  3. On the next page, add your GitHub account and select your repository. Then, click Begin Setup.Add your GitHub account
  4. On the next page, fill in the Project name text box. The project name will be the name for your hosted link. Then, under the Build Settings, fill in the Build Command text box with the following commands and the Build output directory text box with output/wwwroot. Click Save and Deploy.
    curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh;
    chmod +x dotnet-install.sh;
    ./dotnet-install.sh -c 6.0 -InstallDir ./dotnet6;
    ./dotnet6/dotnet --version;
    ./dotnet6/dotnet publish -c Release -o output;

    Refer to the following images.
    Providing the project name in the GitHub repositoryConfiguring Build command and output directory in GitHub

Note: Give the WASM app’s root directory location in the Path text box if the GitHub repository’s root directory is not the same as the app’s root directory. For example, I have given the path Deploy Syncfusion Blazor WASM application to Cloudflare/Cloudflare/ for my GitHub repository.

Setting the WASP app root directoryThat’s all the steps you need. Now, you can see deployment is initializing on your screen. Once it is completed, you will be provided with the hosted link.

Refer to the following images.

Deploying Blazor WebAssembly App in Cloudflare
Deploying Blazor WebAssembly App in Cloudflare

Build and deployment settings

GitHub reference

Check out the demo to Deploy a Blazor WebAssembly app in Cloudflare in GitHub and on the web.

Conclusion

Thanks for reading! In this blog, we have seen how to deploy the Blazor WebAssembly app in Cloudflare. Since Cloudflare Pages is integrated with GitHub, deployment is much easier for developers. In fact, only the first deployment is a manual process. After that, every change to our repository will be automatically deployed by Cloudflare Pages. Try out the steps in this blog and leave your feedback in the comments section below!

If you would like to try Syncfusion’s Blazor components, you can download our free trial. Also, check out our Syncfusion Blazor components online demos and documentation for a detailed explanation and the facts you need to proceed further.

You can contact us through our support forumsupport portal, or feedback portal. We are always happy to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed