web api instance property
WorkerNavigator: serial property
Secure contextAvailable in workers
The serial read-only property of the WorkerNavigator interface returns a Serial object which represents the worker entry point into the Web Serial API.
The same instance of the Serial object will always be returned.
Value
A Serial object.
Examples
List the available ports
The following example uses the getPorts() method to initialize a list of available ports.
navigator.serial.getPorts().then((ports) => {
// Initialize the list of available ports.
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.