8 lines
		
	
	
	
		
			267 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			267 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const counter = document.getElementById('counter')
 | 
						|
 | 
						|
window.electronAPI.handleCounter((event, value) => {
 | 
						|
  const oldValue = Number(counter.innerText)
 | 
						|
  const newValue = oldValue + value
 | 
						|
  counter.innerText = newValue
 | 
						|
  event.sender.send('counter-value', newValue)
 | 
						|
})
 |