In RaptorFX, you can send notifications to the user. This can be achieved quite easily by using the Web Notifications API.
// Example Code on how to send a Notification!
Notification.requestPermission().then((permission) => {
if (permission === "granted") {
const notification = new Notification("Hello World!", {
body: "This is a notification!"
})
setTimeout(() => {
notification.close()
}, 5000);
}
})