Raphael Menges

Results 22 comments of Raphael Menges

I investigated whether macOS / Darwin offers a similar indicator as Windows does. However, I could not find anything. At least the CGEventFlags do not contain any information whether an...

It looks like under macOS [hardware events](https://developer.apple.com/documentation/coregraphics/cgevent) are initialized with a reference to a specific [event source](https://developer.apple.com/documentation/coregraphics/cgeventsource). Perhaps the event source can provide indication whether an event is caused by...

Hello @kwhat: I finally got time to work with libuiohook in more depth. I am already using the code from 1.3 branch and would like to know whether you have...

> @ash0x0 I've found "keypress" event returns a key representation by reading the source code. I believe it's not in the documentation. The "keypress"event works for me by combining its...

I am facing the same issue and since upgrading to the latest npm version I need to install my dependencies using `npm install --force` or at least `npm install --legacy-peer-deps`:...

Any updates on this? Using `--legacy-peer-deps` all the time feels quite award 🥲

I am still facing the very same issue. Did anyone find a solution?

For me, `nativeBinding = require('./${localName}.darwin-arm64.node')` aka `'./addon.darwin-arm64.node'` does only work when i test the napi-rs module on its own. When i use it as dependency from `node_modules` in another module,...

I have implemented a quick fix to make the require paths work for my use case: 1. Define a `loader-adaption.mjs` script as follows: ```js import { readFileSync, writeFileSync } from...

First of all, this sounds like a feasible solution 👍 However, I am trying to keep related information together in the same folder. Therefore, I have placed the markdown files...