This document outlines the simplest way to get started using Loupe logging in a React web applications, using Visual Studio and ASP.NET Core.
If you have an existing ASP.NET Core application with a React client application, you can skip to step #5.
-
From the File menu select New to launch the new project screen.
-
Select ASP.NET Core Web Application and click next.
-
Enter your project name and location, and click Create.
-
From the Create a new ASP.NET Coew web application screen select React.js and click Create.
-
Install the server component for Loupe logging:
- Right mouse-click on the project name and select Manage NuGet Packages...
- On the NuGet Package Manager screen select Browse
- In the search, enter Loupe.Agent.AspNetCore and select that package from the search results.
- Click Install on the right, then accept the License Agreement when it shows (this is standard for the Microsoft packages).
-
Configure the server component for Loupe logging:
- Open Startup.cs
- In the
ConfigureServices
method, add the following line:
services.AddLoupe().AddClientLogging();
- In the
Configure
method, find the section that hasapp.UseEndpoints
, and add the following line:
endpoints.MapLoupeClientLogger();
-
Install the Loupe client logging components:
- Right mouse-click on the ClientApp folder, and select Open in Terminal.
- From the Developer Powershell, type the following command and wait for the command to finish:
npm install @gibraltarsoftware/loupe-typescript
-
Configure the client components for Loupe logging:
- Create a module to instantiate the Loupe agent, but adding a file LoupeService.js to the ClientApp/src folder.
- Add the following to the new LoupeService.js file:
import { LoupeAgent } from '@gibraltarsoftware/loupe-typescript'; var loupe = new LoupeAgent(window, window.document); export default loupe;
- Open ClientApp/src/App.js
- Import the new module by adding the following line after the other
import
statements:
import loupe from "./LoupeService";
- Add a constructor to the
App
, which logs an initial message:
constructor() { super(); loupe.information("WebClient", 'Application Started', 'The application has started'); }
-
Run the application. When it starts you will notice a log message being sent to the server. This message can be seen in the browser developer tools (F12) network tab, and in Loupe Desktop if you have it installed.