...
Recording events to measure user interaction is easy with the Gumband SDK. Simply use the GumbandSDK.event.create(eventName: string, data: any)
function to dispatch new events to the Gumband Cloud. For example, the following will dispatch 16 fake button press events:
Code Block | ||
---|---|---|
| ||
// A function to mock up fake events using the real call. createFakeButtonPressEvents() { for (let i=0; i<10; i++) { await gb.event.create("Blue Button Press", {}); } for (let i=0; i<5; i++) { await gb.event.create("Red Button Press", {}); } await gb.event.create("Yellow Button Press", {}); }; |
...