Device Access
Like Chromium based browsers, Electron provides access to device hardware through web APIs. For the most part these APIs work like they do in a browser, but there are some differences that need to be taken into account. The primary difference between Electron and browsers is what happens when device access is requested. In a browser, users are presented with a popup where they can grant access to an individual device. In Electron APIs are provided which can be used by a developer to either automatically pick a device or prompt users to pick a device via a developer created interface.
Web Bluetooth API
The Web Bluetooth API can be used to communicate with bluetooth devices. In order to use this API in Electron, developers will need to handle the select-bluetooth-device
event on the webContents associated with the device request.
Example
This example demonstrates an Electron application that automatically selects the first available bluetooth device when the Test Bluetooth
button is clicked.
- index.html
- main.js
- renderer.js
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<metahttp-equiv="Content-Security-Policy"content="default-src 'self'; script-src 'self'">
<title>Web Bluetooth API</title>
</head>
<body>
<h1>Web Bluetooth API</h1>
<buttonid="clickme">Test Bluetooth</button>
<p>Currently selected bluetooth device: <strongid="device-name""></strong></p>
<scriptsrc="./renderer.js"></script>
</body>
</html>
const{app,BrowserWindow}=require('electron')
const path =require('path')
functioncreateWindow(){
const mainWindow =newBrowserWindow({
width:800,
height:600
})
mainWindow.webContents.on('select-bluetooth-device',(event, deviceList, callback)=>{
event.preventDefault()
if(deviceList && deviceList.length>0){
callback(deviceList[0].deviceId)
}
})
mainWindow.loadFile('index.html')
}
app.whenReady().then(()=>{
createWindow()
app.on('activate',function(){
if(BrowserWindow.getAllWindows().length===0)createWindow()
})
})
app.on('window-all-closed',function(){
if(process.platform!=='darwin') app.quit()
})
asyncfunctiontestIt(){
const device =awaitnavigator.bluetooth.requestDevice({
acceptAllDevices:true
})
document.getElementById('device-name').innerHTML= device.name||`ID: ${device.id}`
}
document.getElementById('clickme').addEventListener('click',testIt)
WebHID API
The WebHID API can be used to access HID devices such as keyboards and gamepads. Electron provides several APIs for working with the WebHID API:
- The
select-hid-device
event on the Session can be used to select a HID device when a call tonavigator.hid.requestDevice
is made. Additionally thehid-device-added
andhid-device-removed
events on the Session can be used to handle devices being plugged in or unplugged during thenavigator.hid.requestDevice
process. -
ses.setDevicePermissionHandler(handler)
can be used to provide default permissioning to devices without first calling for permission to devices vianavigator.hid.requestDevice
. Additionally, the default behavior of Electron is to store granted device permision through the lifetime of the corresponding WebContents. If longer term storage is needed, a developer can store granted device permissions (eg when handling theselect-hid-device
event) and then read from that storage withsetDevicePermissionHandler
. -
ses.setPermissionCheckHandler(handler)
can be used to disable HID access for specific origins.
Blocklist
By default Electron employs the same blocklist used by Chromium. If you wish to override this behavior, you can do so by setting the disable-hid-blocklist
flag:
app.commandLine.appendSwitch('disable-hid-blocklist')
Example
This example demonstrates an Electron application that automatically selects HID devices through ses.setDevicePermissionHandler(handler)
and through select-hid-device
event on the Session when the Test WebHID
button is clicked.
- index.html
- main.js
- renderer.js
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<metahttp-equiv="Content-Security-Policy"content="default-src 'self'; script-src 'self'">
<title>WebHID API</title>
</head>
<body>
<h1>WebHID API</h1>
<buttonid="clickme">Test WebHID</button>
<h3>HID devices automatically granted access via <i>setDevicePermissionHandler</i></h3>
<divid="granted-devices"></div>
<h3>HID devices automatically granted access via <i>select-hid-device</i></h3>
<divid="granted-devices2"></div>
<scriptsrc="./renderer.js"></script>
</body>
</html>
const{app,BrowserWindow}=require('electron')
const path =require('path')
functioncreateWindow(){
const mainWindow =newBrowserWindow({
width:800,
height:600
})
mainWindow.webContents.session.on('select-hid-device',(event, details, callback)=>{
event.preventDefault()
if(details.deviceList&& details.deviceList.length>0){
callback(details.deviceList[0].deviceId)
}
})
mainWindow.webContents.session.on('hid-device-added',(event, device)=>{
console.log('hid-device-added FIRED WITH', device)
})
mainWindow.webContents.session.on('hid-device-removed',(event, device)=>{
console.log('hid-device-removed FIRED WITH', device)
})
mainWindow.webContents.session.setPermissionCheckHandler((webContents, permission, requestingOrigin, details)=>{
if(permission ==='hid'&& details.securityOrigin==='file:///'){
returntrue
}
})
mainWindow.webContents.session.setDevicePermissionHandler((details)=>{
if(details.deviceType==='hid'&& details.origin==='file://'){
returntrue
}
})
mainWindow.loadFile('index.html')
}
app.whenReady().then(()=>{
createWindow()
app.on('activate',function(){
if(BrowserWindow.getAllWindows().length===0)createWindow()
})
})
app.on('window-all-closed',function(){
if(process.platform!=='darwin') app.quit()
})
asyncfunctiontestIt(){
const grantedDevices =awaitnavigator.hid.getDevices()
let grantedDeviceList =''
grantedDevices.forEach(device=>{
grantedDeviceList +=`<hr>${device.productName}</hr>`
})
document.getElementById('granted-devices').innerHTML= grantedDeviceList
const grantedDevices2 =awaitnavigator.hid.requestDevice({
filters:[]
})
grantedDeviceList =''
grantedDevices2.forEach(device=>{
grantedDeviceList +=`<hr>${device.productName}</hr>`
})
document.getElementById('granted-devices2').innerHTML= grantedDeviceList
}
document.getElementById('clickme').addEventListener('click',testIt)
Web Serial API
The Web Serial API can be used to access serial devices that are connected via serial port, USB, or Bluetooth. In order to use this API in Electron, developers will need to handle the select-serial-port
event on the Session associated with the serial port request.
There are several additional APIs for working with the Web Serial API:
- The
serial-port-added
andserial-port-removed
events on the Session can be used to handle devices being plugged in or unplugged during thenavigator.serial.requestPort
process. -
ses.setDevicePermissionHandler(handler)
can be used to provide default permissioning to devices without first calling for permission to devices vianavigator.serial.requestPort
. Additionally, the default behavior of Electron is to store granted device permision through the lifetime of the corresponding WebContents. If longer term storage is needed, a developer can store granted device permissions (eg when handling theselect-serial-port
event) and then read from that storage withsetDevicePermissionHandler
. -
ses.setPermissionCheckHandler(handler)
can be used to disable serial access for specific origins.
Example
This example demonstrates an Electron application that automatically selects serial devices through ses.setDevicePermissionHandler(handler)
as well as demonstrating selecting the first available Arduino Uno serial device (if connected) through select-serial-port
event on the Session when the Test Web Serial
button is clicked.
- index.html
- main.js
- renderer.js
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<metahttp-equiv="Content-Security-Policy"content="default-src 'self'; script-src 'self'">
<title>Web Serial API</title>
<body>
<h1>Web Serial API</h1>
<buttonid="clickme">Test Web Serial API</button>
<p>Matching Arduino Uno device: <strongid="device-name""></strong></p>
<scriptsrc="./renderer.js"></script>
</body>
</html>
const{app,BrowserWindow}=require('electron')
const path =require('path')
functioncreateWindow(){
const mainWindow =newBrowserWindow({
width:800,
height:600
})
mainWindow.webContents.session.on('select-serial-port',(event, portList, webContents, callback)=>{
event.preventDefault()
if(portList && portList.length>0){
callback(portList[0].portId)
}else{
callback('')//Could not find any matching devices
}
})
mainWindow.webContents.session.on('serial-port-added',(event, port)=>{
console.log('serial-port-added FIRED WITH', port)
})
mainWindow.webContents.session.on('serial-port-removed',(event, port)=>{
console.log('serial-port-removed FIRED WITH', port)
})
mainWindow.webContents.session.setPermissionCheckHandler((webContents, permission, requestingOrigin, details)=>{
if(permission ==='serial'&& details.securityOrigin==='file:///'){
returntrue
}
})
mainWindow.webContents.session.setDevicePermissionHandler((details)=>{
if(details.deviceType==='serial'&& details.origin==='file://'){
returntrue
}
})
mainWindow.loadFile('index.html')
mainWindow.webContents.openDevTools()
}
app.whenReady().then(()=>{
createWindow()
app.on('activate',function(){
if(BrowserWindow.getAllWindows().length===0)createWindow()
})
})
app.on('window-all-closed',function(){
if(process.platform!=='darwin') app.quit()
})
asyncfunctiontestIt(){
const filters =[
{ usbVendorId:0x2341, usbProductId:0x0043},
{ usbVendorId:0x2341, usbProductId:0x0001}
];
try{
const port =awaitnavigator.serial.requestPort({filters});
const portInfo = port.getInfo();
document.getElementById('device-name').innerHTML=`vendorId: ${portInfo.usbVendorId} | productId: ${portInfo.usbProductId}`
}catch(ex){
if(ex.name==='NotFoundError'){
document.getElementById('device-name').innerHTML='Device NOT found'
}else{
document.getElementById('device-name').innerHTML= ex
}
}
}
document.getElementById('clickme').addEventListener('click',testIt)
© GitHub Inc.
Licensed under the MIT license.
https://www.electronjs.org/docs/latest/tutorial/devices