This is an ASP.NET Core application with a React frontend that hooks into the @gibraltarsoftware/loupe-typescript package to enable client side logging to Loupe.
The application can be run through Visual Studio simply by pressing F5.
The demo builds upon the ASP.NET Core React template by adding in calls to loupe in various locations:
- A call is made to
loupe.information
when the counter is incremented on the Counter page.
- Install the agent:
npm install @gibraltarsoftware/loupe-typescript
- Create a wrapper service (LoupeService.js):
import { LoupeAgent } from '@gibraltarsoftware/loupe-typescript'; var loupe = new LoupeAgent(window, window.document); export default loupe
- Import the service into your component:
import loupe from "./LoupeService";
- Log some details:
const counterObject = { name: "counter", value: this.state.currentCount }; loupe.information( "Angular", "Incrementing Counter", 'Counter is now {0}', [this.state.currentCount], null, counterObject );