Kishan Bagaria

Results 13 issues of Kishan Bagaria

Are there any plans of making a WebAssembly version so this can be run in a browser easily?

We've been testing out gramjs for a while with the following client params: ```js { retryDelay: 1_000, autoReconnect: true, connectionRetries: Infinity, useWSS: true, } ``` When the network is changed...

```rust use std::collections::HashSet; #[napi] pub fn get_set(&self) -> HashSet { self.random_set } // the trait `NapiRaw` is not implemented for `std::collections::HashSet` ``` Would be neat to be able to write...

Is it possible to get notified when a particular permission is granted by the user, manually from System Preferences or through the prompt?

enhancement
help wanted

#### Description of Change This fixes an edge case in `app.isInApplicationsFolder()` which returns false when an app is launched from Terminal like this: ``` /applications/App.app/Contents/MacOS/App ``` while this works fine:...

platform/macOS
new-pr 🌱

``` const list = await this.client.getParticipants(dialogId, { limit: 256 }) console.log(members.total, members.length, members.map(m => m.id)) // members.total=3 // members.length=256 // members.map(m => m.id) = TotalList(256) [11,12,13,11,12,13,...] ``` Running [email protected] Looks...

package.json: ```json { "scripts": { "argv": "node -e 'console.log(process.argv)'" } } ```

bug
npm

https://github.com/KishanBagaria/node-mac-contacts/commit/e2e1f1250e6107e361734bfd6d3a0ee6aa12c927 Can create a PR if you'd like to merge upstream - might need a review

enhancement

Since my app was being very slow on their computer (MBP 16" 2019), I got a friend to run this: ```js const nmc = require('node-mac-contacts') console.time('done') const c = nmc.getAllContacts(['contactImage',...

performance

So I can't repro this consistently but it happens when a contact is mutated: ``` /Users/kishan/Dropbox/Kishan/foo/node_modules/electron/dist/Electron.app/Contents/Frameworks/Electron Helper (Renderer).app/Contents/MacOS/Electron Helper (Renderer)[13409]: ../../third_party/electron_node/src/node_api.cc:1064:napi_status napi_call_threadsafe_function(napi_threadsafe_function, void *, napi_threadsafe_function_call_mode): Assertion `(func) != nullptr' failed....

bug