JavaScript interaction

🟨 Slightly different to Blazor WebAssembly

Blazor allows for seamless integration of JavaScript into your applications, making it easy to leverage existing libraries. This tutorial will walk you through the basics of using JavaScript in Blazor, from standard JavaScript to modules, so that you can get started with minimal hassle.

We'll explore the primary interaction feature available for JavaScript integration in Blazor Server: IJSRuntime. By weighing the pros and cons of each feature, you will be equipped to make an informed decision about which option is the best fit for your project. By the end of this tutorial, you will have a solid understanding of how to incorporate JavaScript into your Blazor applications with confidence.

  • Why do you need to use JavaScript in a Blazor project?
  • Standard JavaScript and JavaScript Module.
  • Communication between .NET and JavaScript environments.
  • Key differences between Blazor WebAssembly and Blazor Server.
You can download the example code used in this topic on GitHub.

Why do you need to use JavaScript in a Blazor project?

Blazor is a .NET web framework that allows developers to build web applications using C# instead of JavaScript. Blazor applications run in the browser using WebAssembly, which is a binary instruction format for a stack-based virtual machine that allows code to be executed in the browser. However, there are some scenarios in which it may be necessary or beneficial to use JavaScript in a Blazor project. Here are a few reasons why you might need to use JavaScript in a Blazor project:

  1. Interacting with the browser's DOM: Blazor provides a rich set of UI components that can be used to build web applications, but there may be cases where you need to interact directly with the browser's Document Object Model (DOM) to achieve a specific functionality. For example, create a custom HTML event, handle frequently fired HTML event like mousemove. In these cases, you can use JavaScript to handle to increase performance or create a custom HTML event.
  2. Accessing browser APIs: Blazor provides access to a wide range of .NET APIs that can be used to interact with the browser and other system resources. However, there may be cases where you need to access browser APIs that are not currently available in .NET. For example, access the browser's camera, use IndexedDb. In these cases, you can use JavaScript to access the browser API and call JavaScript functions from C# code.
  3. Third-party libraries: There may be cases where you want to use a third-party JavaScript library that is not available in .NET (yet). In these cases, you can use JavaScript to include the library in your project and call its functions from C# code.

Standard JavaScript and JavaScript Module

There are 2 ways to implement JavaScript: standard JavaScript and JavaScript module.

  • Standard JavaScript refers to the core language features and functionality defined in the ECMAScript specification, which is the official standard for the JavaScript language. This includes features like variables, functions, control flow statements, and data types.
  • JavaScript modules, on the other hand, are a way of organizing and structuring JavaScript code into reusable components that can be imported and exported between files. Modules were introduced in ECMAScript 6 (ES6) as a way to provide better code organization and encapsulation, and they are now a widely used feature of modern JavaScript development.

How to differentiate between standard JavaScript and JavaScript modules?

The syntax for using standard JavaScript and JavaScript modules is different. For example, standard JavaScript uses global variables and functions, while JavaScript modules use the import and export statements to define dependencies and expose functionality between files. In addition, standard JavaScript code is executed in the global scope, while JavaScript modules have their own scope and can be imported and used in other modules.


Communication between .NET and JavaScript environments

Blazor offers a built-in feature for integrating JavaScript code: IJSRuntime.

IJSRuntime is available for both Blazor Server and Blazor WebAssembly and is typically used inside a component. It can also be used to modularize JavaScript code. When using IJSRuntime, you must control the lifetime of the JavaScript module and its references.


Key differences between Blazor WebAssembly and Blazor Server

In Blazor WebAssembly, you can also use InteropServices.JavaScript to interact with JavaScript.

BLAZOR SCHOOL
Designed and built with care by our dedicated team, with contributions from a supportive community. We strive to provide the best learning experience for our users.
Docs licensed CC-BY-SA-4.0
Copyright © 2021-2024 Blazor School
An unhandled error has occurred. Reload 🗙