const{Notification}=require('electron') constNOTIFICATION_TITLE='Basic Notification' constNOTIFICATION_BODY='Notification from the Main process' newNotification({ title:NOTIFICATION_TITLE, body:NOTIFICATION_BODY }).show()
constNOTIFICATION_TITLE='Title' constNOTIFICATION_BODY= 'Notification from the Renderer process. Click to log to console.' constCLICK_MESSAGE='Notification clicked' newNotification(NOTIFICATION_TITLE,{body:NOTIFICATION_BODY}).onclick= ()=>console.log(CLICK_MESSAGE)
constNOTIFICATION_TITLE='Title' constNOTIFICATION_BODY='Notification from the Renderer process. Click to log to console.' constCLICK_MESSAGE='Notification clicked!' newwindow.Notification(NOTIFICATION_TITLE,{body:NOTIFICATION_BODY}) .onclick=()=>{document.getElementById('output').innerText=CLICK_MESSAGE}