8 lines
		
	
	
	
		
			225 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			8 lines
		
	
	
	
		
			225 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								const { WebContentsView, app, webContents } = require('electron')
							 | 
						||
| 
								 | 
							
								app.on('ready', function () {
							 | 
						||
| 
								 | 
							
								  const web = webContents.create({})
							 | 
						||
| 
								 | 
							
								  new WebContentsView(web)  // eslint-disable-line
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  process.nextTick(() => app.quit())
							 | 
						||
| 
								 | 
							
								})
							 |