Initial Commit

This commit is contained in:
2026-01-15 21:52:12 +01:00
parent 3ed42cdeb6
commit 9c5b22667c
6699 changed files with 1387815 additions and 0 deletions

16
node_modules/@serialport/stream/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# @serialport/stream
The serialport stream interface. This package requires bindings to work.
You'd use this if you want to keep your package size down by requiring only the parts of serialport that you want to use. It is used internally in the `serialport` package.
This is how you use it.
```ts
const { SerialPortStream } = require('@serialport/stream')
const { autoDetect } = require('@serialport/bindings-cpp')
const binding = autoDetect()
const port = new SerialPortStream({ binding, path: '/dev/ttyay', baudRate: 9600 })
```
Learn more at our [stream documentation](https://serialport.io/docs/api-stream) page.