node-udev
node-udev copied to clipboard
Bindings to libudev
Fails to install on Fedora FC38. node v18.16.0 npm 6.14.8 python 3.11.3 Possible solution: https://stackoverflow.com/questions/74715990/node-gyp-err-invalid-mode-ru-while-trying-to-load-binding-gyp ``` $ npm i udev > @serialport/[email protected] install /opt/iobroker/node_modules/@serialport/bindings-cpp > node-gyp-build > [email protected] install /opt/iobroker/node_modules/unix-dgram...
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...
Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1. Commits 2449650 Update mocha 560b2d8 Don't use regex to trim whitespace b1bdb92 Remove linting package zoo c20dc7e Cache 308 See full diff in compare...
Bumps [tar](https://github.com/npm/node-tar) from 6.1.0 to 6.1.11. Commits e573aee 6.1.11 edb8e9a fix: perf regression on hot string munging path a9d9b05 chore(test): Avoid spurious failures packing node_modules/.cache 24b8bda fix(test): use posix path...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
``` npm install ConnectionSystems/node-udev ``` output on Raspberry Pi : ``` npm WARN deprecated [email protected]: Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the @mapbox scoped...
Hello everybody. I think I've been overlooking the people using this library and I'm sorry about that one. I think it could be much better if I had responded to...
[udev-install.txt](https://github.com/cheery/node-udev/files/3602876/udev-install.txt)
It looks like master works with node 10. Thanks!
const udev = require('udev'); const monitor = udev.monitor(); ``` javascript monitor.on('add', () => { console.log('1'); Promise.resolve() .then(() => { console.log('2'); }) .then(() => { console.log('3'); }); }); ``` Output should...