Alex Potsides
Alex Potsides
On a similar note, I had to make the changes in this pull request to get it to compile and install successfully on OS X. Namely adding the JDK headers...
Hi, I've just tried to install your library with libusb-1.0.9 and I think a function name has changed since you wrote it. The change in this pull request updates it...
Mocha supports running esm tests if the node it's running on does, you just have to use the [loadFilesAsync()](https://mochajs.org/api/mocha#loadFilesAsync) method. This seems to work fine in the electron main process...
* **Version**: v18.14.0 * **Platform**: windows-latest, ubuntu-latest and macos-latest GitHub CI images When running tests with coverage in CI, after the test run completes successfully, CPU spikes to 100% and...
If `dns_sd.DNSServiceRegister` results in an error and you've passed a callback to `Advertisement.create` the error is passed to the callback as well as being emitted on the advert itself. E.g.:...
I'd really like to use this module in browsers but the bundle size ends up being very large, just importing the `CuckooFilter` adds over 50KB of minified code to the...
The commit message for https://github.com/tschaub/gh-pages/commit/e1374b331b4a4365c5f266e94a27b01e702adc74 says to always return a promise but I think [this block](https://github.com/tschaub/gh-pages/blob/main/lib/index.js#L109-L114) can still cause the publish method to return `void` and not `Promise` - it...
``` RangeError: WebAssembly.Compile is disallowed on the main thread, if the buffer size is larger than 4KB. Use WebAssembly.compile, or compile on a worker thread. at instantiateSync (/home/travis/build/ipfs/js-ipfs-unixfs/node_modules/@assemblyscript/loader/index.js:306:11) at loadWebAssembly...
I hope this is the correct place to open this. https://github.com/ipfs/interop/pull/57 adds interop tests for circuit reconnect but they appear to be failing: ``` 1) circuit go-go-go reconnect: Error: Timeout...
Some modules are [published](https://unpkg.com/[email protected]/package.json) with no `main` field in `package.json` and no `/index.js`, instead using `exports` to define the entry point for the module. They sometimes specify an entry point...