-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
SerialPort Version
10.4.0
Node Version
14.19.1
Electron Version
17.2.0
Platform
Linux [redacted] 5.13.0-37-generic #42~20.04.1-Ubuntu SMP Tue Mar 15 15:44:28 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
Architecture
x64
Hardware or chipset of serialport
No response
What steps will reproduce the bug?
I'm having trouble using the Electron Forge Typescript + Webpack template to replicate this example: https://github.com/serialport/electron-serialport
yarn create electron-app my-new-app --template=typescript-webpack && cd my-new-appyarn add serialport tableifyyarn add --dev @types/tableify- Copy the contents of
renderer.jsintorenderer.ts - Copy the contents of
index.htmlintoindex.html - Add
webPreferences: { nodeIntegration: true, contextIsolation: false }to the options ofBrowserWindowinindex.ts target: 'electron-renderer'towebpack.renderer.config.jsnpx electron-rebuildyarn start
What happens?
This error appears on the console and Serialport fails to start.
Uncaught Error: No native build was found for platform=linux arch=x64 runtime=electron abi=101 uv=1 libc=glibc node=16.13.0 electron=17.2.0 webpack=true
loaded from: [redacted]/my-new-app/node_modules/electron/dist/resources/electron.asar
at Function.load.path (index.js?04e8:6:99)
at load (index.js?04e8:6:99)
at eval (load-bindings.js?bdc2:10:1)
at Object../node_modules/@serialport/bindings-cpp/dist/load-bindings.js (index.js:85:1)
at __webpack_require__ (index.js:841:33)
at fn (index.js:1028:21)
at eval (darwin.js?fd34:8:25)
at Object../node_modules/@serialport/bindings-cpp/dist/darwin.js (index.js:30:1)
at __webpack_require__ (index.js:841:33)
at fn (index.js:1028:21)
What should have happened?
Serialport should list all serial devices in the Electron window that opens exactly as with https://github.com/serialport/electron-serialport
Additional information
The same issue occurs when running a packaged Electron app using yarn make.
I have observed the same behaviour using Electron 12.0.9. (This is the project we are using Serialport in.)
A colleague has replicated the issue with Electron 12.0.9 on macOS with an M1 MacBook Pro.