W3cubDocs

/Web APIs

Navigator: serial property

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The serial read-only property of the Navigator interface returns a Serial object which represents the entry point into the Web Serial API.

When getting, the same instance of the Serial object will always be returned.

Value

A Serial object.

Examples

The following example uses the getPorts() method to initialize a list of available ports.

js

navigator.serial.getPorts().then((ports) => {
  // Initialize the list of available ports with `ports` on page load.
});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
serial 89 89 No No 75 No No No No No No No

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/serial