Jeff Robbins
Jeff Robbins
Work in progress...
I'm using jsdoc-to-markdown to generate the README file for [electron-playwright-helpers](https://github.com/spaceagetv/electron-playwright-helpers#readme). However the JSDoc definitions for returned Promise generics such as `@returns {Promise}` leads to output which resembles this: `=> Promise.`...
It would be amazing if there were a [WebCodec](https://github.com/w3c/webcodecs/blob/main/explainer.md) package for a HAP to allow playback in Chrome and Electron applications.
I'm creating a cross-platform Node app which uses GPIO pins when they're available. However, on other platforms, I'd like to save the overhead (and errors) of the rpi-gpio calls. Would...
From the documentation, it looks like the Promises interface should mirror all of the functions of the synchronous. However, the following code errors out: ``` var gpiop = require('rpi-gpio').promise; gpio.setMode(gpio.MODE_BCM);...
Now that [electron.remote is deprecated](https://www.electronjs.org/docs/breaking-changes#deprecated-remote-module), is there a way to use this package without it? It seems like most of the functionality could work with only a few minor changes....
Am I correct that the proper way to trigger the `.on('aborted')` event is to allow the ProgressBar to be closable, like this? ```javascript const progressBar = new ProgressBar( { text:...
I'm guessing the answer here is "no". But I'll ask anyway: Is there a way to use this library (I'm using the WebHID version these days) along with [Elgato's Stream...
I was doing some testing to see if this API will work yet in Electron. I created [an Electron Fiddle project](https://gist.github.com/jjeff/078e07a2e6efd589365717e81094bbd6) which opens your page to test. Unfortunately, all `requestFullscreen()`s...
When using the Playright test runner, I would like to be able to pass a command-line argument to my Playwright test, similar to this: ```shell npx playwright test --build-path=/path/to/my/application/build/ ```...