ASP.NET Core Blazor startup
This article explains how to configure Blazor startup.
Configure a manual start in the wwwroot/index.html file (Blazor WebAssembly) or Pages/_Layout.cshtml file (Blazor Server):
- Add an
autostart="false"attribute and value to the<script>tag for the Blazor script. - Place a script that calls
Blazor.startafter the Blazor<script>tag and inside the closing</body>tag.
JavaScript initializers
JavaScript (JS) initializers execute logic before and after a Blazor app loads. JS initializers are useful in the following scenarios:
- Customizing how a Blazor app loads.
- Initializing libraries before Blazor starts up.
- Configuring Blazor settings.
JS initializers are detected as part of the build process and imported automatically in Blazor apps. Use of JS initializers often removes the need to manually trigger script functions from the app when using Razor class libraries (RCLs).
To define a JS initializer, add a JS module to the project named {NAME}.lib.module.js, where the {NAME} placeholder is the assembly name, library name, or package identifier. Place the file in the project's web root, which is typically the wwwroot folder.
The module exports either or both of the following conventional functions:
beforeStart(options, extensions): Called before Blazor starts. For example,beforeStartis used to customize the loading process, logging level, and other options specific to the hosting model.- In Blazor WebAssembly,
beforeStartreceives the Blazor WebAssembly options (optionsin this section's example) and any extensions (extensionsin this section's example) added during publishing. For example, options can specify the use of a custom boot resource loader. - In Blazor Server,
beforeStartreceives SignalR circuit start options (optionsin this section's example). - In
BlazorWebViews, no options are passed.
- In Blazor WebAssembly,
afterStarted: Called after Blazor is ready to receive calls from JS. For example,afterStartedis used to initialize libraries by making JS interop calls and registering custom elements. The Blazor instance is passed toafterStartedas an argument (blazorin this section's example).
The following example demonstrates JS initializers for beforeStart and afterStarted. For the filename of the following example:
- Use the app's assembly name in the filename if the JS initializers are consumed as a static asset in the project. For example, name the file
BlazorSample.lib.module.jsfor a project with an assembly name ofBlazorSample. Place the file in the app'swwwrootfolder. - Use the project's library name or package identifier if the JS initializers are consumed from an RCL. For example, name the file
RazorClassLibrary1.lib.module.jsfor an RCL with a package identifier ofRazorClassLibrary1. Place the file in the library'swwwrootfolder.
export function beforeStart(options, extensions) {
console.log("beforeStart");
}
export function afterStarted(blazor) {
console.log("afterStarted");
}
Note
MVC and Razor Pages apps don't automatically load JS initializers. However, developer code can include a script to fetch the app's manifest and trigger the load of the JS initializers.
For an examples of JS initializers, see the following resources:
- Deployment layout for ASP.NET Core Blazor WebAssembly apps
- Basic Test App in the ASP.NET Core GitHub repository (
BasicTestApp.lib.module.js)
Note
Documentation links to .NET reference source usually load the repository's default branch, which represents the product unit's current development for the next release of .NET. To select the branch for a different release, use the Switch branches or tags dropdown list. The ASP.NET Core repository uses a "release/{VERSION}" format for release branch names, where the {VERSION} placeholder is the release version. For example, select the release/6.0 branch for the ASP.NET Core 6.0 release. Other reference source repositories may use different release tag naming schemes.
Initialize Blazor when the document is ready
The following example starts Blazor when the document is ready:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Blazor.start();
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Chain to the Promise that results from a manual start
To perform additional tasks, such as JS interop initialization, use then to chain to the Promise that results from a manual Blazor app start:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
Blazor.start().then(function () {
...
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Load boot resources
This section only applies to Blazor WebAssembly apps.
When a Blazor WebAssembly app loads in the browser, the app downloads boot resources from the server:
- JavaScript code to bootstrap the app
- .NET runtime and assemblies
- Locale specific data
Customize how these boot resources are loaded using the loadBootResource API. The loadBootResource function overrides the built-in boot resource loading mechanism. Use loadBootResource for the following scenarios:
- Load static resources, such as timezone data or
dotnet.wasm, from a CDN. - Load compressed assemblies using an HTTP request and decompress them on the client for hosts that don't support fetching compressed contents from the server.
- Alias resources to a different name by redirecting each
fetchrequest to a new name.
Note
External sources must return the required Cross-Origin Resource Sharing (CORS) headers for browsers to allow cross-origin resource loading. CDNs usually provide the required headers by default.
loadBootResource parameters appear in the following table.
| Parameter | Description |
|---|---|
type |
The type of the resource. Permissable types include: assembly, pdb, dotnetjs, dotnetwasm, and timezonedata. You only need to specify types for custom behaviors. Types not specified to loadBootResource are loaded by the framework per their default loading behaviors. |
name |
The name of the resource. |
defaultUri |
The relative or absolute URI of the resource. |
integrity |
The integrity string representing the expected content in the response. |
The loadBootResource function can return a URI string to override the loading process. In the following example, the following files from bin/Release/net5.0/wwwroot/_framework are served from a CDN at https://cdn.example.com/blazorwebassembly/5.0.0/:
dotnet.*.jsdotnet.wasm- Timezone data
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
console.log(`Loading: '${type}', '${name}', '${defaultUri}', '${integrity}'`);
switch (type) {
case 'dotnetjs':
case 'dotnetwasm':
case 'timezonedata':
return `https://cdn.example.com/blazorwebassembly/5.0.0/${name}`;
}
}
});
</script>
To customize more than just the URLs for boot resources, the loadBootResource function can call fetch directly and return the result. The following example adds a custom HTTP header to the outbound requests. To retain the default integrity checking behavior, pass through the integrity parameter.
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
return fetch(defaultUri, {
cache: 'no-cache',
integrity: integrity,
headers: { 'Custom-Header': 'Custom Value' }
});
}
});
</script>
The loadBootResource function can also return:
null/undefined, which results in the default loading behavior.- A
Responsepromise. For an example, see Host and deploy ASP.NET Core Blazor WebAssembly.
Control headers in C# code
Control headers at startup in C# code using the following approaches.
In the following examples, a Content Security Policy (CSP) is applied to the app via a CSP header. The {POLICY STRING} placeholder is the CSP policy string.
In Blazor Server and prerendered Blazor WebAssembly apps, use ASP.NET Core Middleware to control the headers collection.
In
Program.cs:app.Use(async (context, next) => { context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); await next(); });The preceding example uses inline middleware, but you can also create a custom middleware class and call the middleware with an extension method in
Program.cs. For more information, see Write custom ASP.NET Core middleware.In hosted Blazor WebAssembly apps that aren't prerendered, pass StaticFileOptions to MapFallbackToFile that specifies response headers at the OnPrepareResponse stage.
In
Program.csof theServerproject:var staticFileOptions = new StaticFileOptions { OnPrepareResponse = context => { context.Context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); } }; ... app.MapFallbackToFile("index.html", staticFileOptions);
For more information on CSPs, see Enforce a Content Security Policy for ASP.NET Core Blazor.
Additional resources
Configure a manual start in the wwwroot/index.html file (Blazor WebAssembly) or Pages/_Host.cshtml file (Blazor Server):
- Add an
autostart="false"attribute and value to the<script>tag for the Blazor script. - Place a script that calls
Blazor.startafter the Blazor<script>tag and inside the closing</body>tag.
Initialize Blazor when the document is ready
The following example starts Blazor when the document is ready:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Blazor.start();
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Chain to the Promise that results from a manual start
To perform additional tasks, such as JS interop initialization, use then to chain to the Promise that results from a manual Blazor app start:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
Blazor.start().then(function () {
...
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Load boot resources
This section only applies to Blazor WebAssembly apps.
When a Blazor WebAssembly app loads in the browser, the app downloads boot resources from the server:
- JavaScript code to bootstrap the app
- .NET runtime and assemblies
- Locale specific data
Customize how these boot resources are loaded using the loadBootResource API. The loadBootResource function overrides the built-in boot resource loading mechanism. Use loadBootResource for the following scenarios:
- Load static resources, such as timezone data or
dotnet.wasm, from a CDN. - Load compressed assemblies using an HTTP request and decompress them on the client for hosts that don't support fetching compressed contents from the server.
- Alias resources to a different name by redirecting each
fetchrequest to a new name.
Note
External sources must return the required Cross-Origin Resource Sharing (CORS) headers for browsers to allow cross-origin resource loading. CDNs usually provide the required headers by default.
loadBootResource parameters appear in the following table.
| Parameter | Description |
|---|---|
type |
The type of the resource. Permissable types include: assembly, pdb, dotnetjs, dotnetwasm, and timezonedata. You only need to specify types for custom behaviors. Types not specified to loadBootResource are loaded by the framework per their default loading behaviors. |
name |
The name of the resource. |
defaultUri |
The relative or absolute URI of the resource. |
integrity |
The integrity string representing the expected content in the response. |
The loadBootResource function can return a URI string to override the loading process. In the following example, the following files from bin/Release/net5.0/wwwroot/_framework are served from a CDN at https://cdn.example.com/blazorwebassembly/5.0.0/:
dotnet.*.jsdotnet.wasm- Timezone data
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
console.log(`Loading: '${type}', '${name}', '${defaultUri}', '${integrity}'`);
switch (type) {
case 'dotnetjs':
case 'dotnetwasm':
case 'timezonedata':
return `https://cdn.example.com/blazorwebassembly/5.0.0/${name}`;
}
}
});
</script>
To customize more than just the URLs for boot resources, the loadBootResource function can call fetch directly and return the result. The following example adds a custom HTTP header to the outbound requests. To retain the default integrity checking behavior, pass through the integrity parameter.
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
return fetch(defaultUri, {
cache: 'no-cache',
integrity: integrity,
headers: { 'Custom-Header': 'Custom Value' }
});
}
});
</script>
The loadBootResource function can also return:
null/undefined, which results in the default loading behavior.- A
Responsepromise. For an example, see Host and deploy ASP.NET Core Blazor WebAssembly.
Control headers in C# code
Control headers at startup in C# code using the following approaches.
In the following examples, a Content Security Policy (CSP) is applied to the app via a CSP header. The {POLICY STRING} placeholder is the CSP policy string.
In Blazor Server and prerendered Blazor WebAssembly apps, use ASP.NET Core Middleware to control the headers collection.
In
Startup.ConfigureofStartup.cs:app.Use(async (context, next) => { context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); await next(); });The preceding example uses inline middleware, but you can also create a custom middleware class and call the middleware with an extension method in
Startup.Configure. For more information, see Write custom ASP.NET Core middleware.In hosted Blazor WebAssembly apps that aren't prerendered, pass StaticFileOptions to MapFallbackToFile that specifies response headers at the OnPrepareResponse stage.
In
Startup.Configure(Startup.cs) of theServerproject:var staticFileOptions = new StaticFileOptions { OnPrepareResponse = context => { context.Context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); } }; ... app.MapFallbackToFile("index.html", staticFileOptions);
For more information on CSPs, see Enforce a Content Security Policy for ASP.NET Core Blazor.
Additional resources
Configure a manual start in the wwwroot/index.html file (Blazor WebAssembly) or Pages/_Host.cshtml file (Blazor Server):
- Add an
autostart="false"attribute and value to the<script>tag for the Blazor script. - Place a script that calls
Blazor.startafter the Blazor<script>tag and inside the closing</body>tag.
Initialize Blazor when the document is ready
The following example starts Blazor when the document is ready:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Blazor.start();
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Chain to the Promise that results from a manual start
To perform additional tasks, such as JS interop initialization, use then to chain to the Promise that results from a manual Blazor app start:
<body>
...
<script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
<script>
Blazor.start().then(function () {
...
});
</script>
</body>
The {webassembly|server} placeholder in the preceding markup is either webassembly for a Blazor WebAssembly app (blazor.webassembly.js) or server for a Blazor Server app (blazor.server.js).
Load boot resources
This section only applies to Blazor WebAssembly apps.
When a Blazor WebAssembly app loads in the browser, the app downloads boot resources from the server:
- JavaScript code to bootstrap the app
- .NET runtime and assemblies
- Locale specific data
Customize how these boot resources are loaded using the loadBootResource API. The loadBootResource function overrides the built-in boot resource loading mechanism. Use loadBootResource for the following scenarios:
- Load static resources, such as timezone data or
dotnet.wasm, from a CDN. - Load compressed assemblies using an HTTP request and decompress them on the client for hosts that don't support fetching compressed contents from the server.
- Alias resources to a different name by redirecting each
fetchrequest to a new name.
Note
External sources must return the required Cross-Origin Resource Sharing (CORS) headers for browsers to allow cross-origin resource loading. CDNs usually provide the required headers by default.
loadBootResource parameters appear in the following table.
| Parameter | Description |
|---|---|
type |
The type of the resource. Permissable types include: assembly, pdb, dotnetjs, dotnetwasm, and timezonedata. You only need to specify types for custom behaviors. Types not specified to loadBootResource are loaded by the framework per their default loading behaviors. |
name |
The name of the resource. |
defaultUri |
The relative or absolute URI of the resource. |
integrity |
The integrity string representing the expected content in the response. |
The loadBootResource function can return a URI string to override the loading process. In the following example, the following files from bin/Release/net5.0/wwwroot/_framework are served from a CDN at https://cdn.example.com/blazorwebassembly/3.1.0/:
dotnet.*.jsdotnet.wasm- Timezone data
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
console.log(`Loading: '${type}', '${name}', '${defaultUri}', '${integrity}'`);
switch (type) {
case 'dotnetjs':
case 'dotnetwasm':
case 'timezonedata':
return `https://cdn.example.com/blazorwebassembly/3.1.0/${name}`;
}
}
});
</script>
To customize more than just the URLs for boot resources, the loadBootResource function can call fetch directly and return the result. The following example adds a custom HTTP header to the outbound requests. To retain the default integrity checking behavior, pass through the integrity parameter.
Inside the closing </body> tag of wwwroot/index.html:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script>
Blazor.start({
loadBootResource: function (type, name, defaultUri, integrity) {
return fetch(defaultUri, {
cache: 'no-cache',
integrity: integrity,
headers: { 'Custom-Header': 'Custom Value' }
});
}
});
</script>
The loadBootResource function can also return:
null/undefined, which results in the default loading behavior.- A
Responsepromise. For an example, see Host and deploy ASP.NET Core Blazor WebAssembly.
Control headers in C# code
Control headers at startup in C# code using the following approaches.
In the following examples, a Content Security Policy (CSP) is applied to the app via a CSP header. The {POLICY STRING} placeholder is the CSP policy string.
In Blazor Server, use ASP.NET Core Middleware to control the headers collection.
In
Startup.ConfigureofStartup.cs:app.Use(async (context, next) => { context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); await next(); });The preceding example uses inline middleware, but you can also create a custom middleware class and call the middleware with an extension method in
Program.cs. For more information, see Write custom ASP.NET Core middleware.In hosted Blazor WebAssembly apps, pass StaticFileOptions to MapFallbackToFile that specifies response headers at the OnPrepareResponse stage.
In
Startup.Configure(Startup.cs) of theServerproject:var staticFileOptions = new StaticFileOptions { OnPrepareResponse = context => { context.Context.Response.Headers.Add("Content-Security-Policy", "{POLICY STRING}"); } }; ... app.MapFallbackToFile("index.html", staticFileOptions);
For more information on CSPs, see Enforce a Content Security Policy for ASP.NET Core Blazor.
Additional resources
الملاحظات
إرسال الملاحظات وعرضها المتعلقة بـ