Events FAQ
How do I subscribe to events?
ts
const unsubscribe = lifecycle.on("page:visible", (event) => {
console.log(event.metadata);
});How do I inspect all events?
Use lifecycle.onEvent() for the full feed or open the Event Explorer.
