webserial
v0.2.0
Published
Node.js compiled addon implementing the Web Serial API
Downloads
9
Maintainers
Readme
webserial
Experimental: Requires Node.js 16.5.0 or newer.
Web Serial API for Node.js.
Using this module:
'use strict';
const { Serial, SerialPort, registerGlobals } = require('webserial');
registerGlobals(globalThis);
console.log(globalThis.navigator.serial);
console.log(globalThis.navigator.serial instanceof Serial);