astilectron
astilectron copied to clipboard
Electron app that provides an API over a TCP socket that allows executing Electron's method as well as capturing Electron's events
Doc: https://www.electronjs.org/docs/latest/api/app#appsetasdefaultprotocolclientprotocol-path-args How could I go about adding support for something like this?
Add: - setAsDefaultProtocolClient - removeAsDefaultProtocolClient - isDefaultProtocolClient - open-url app event Matches go-astilectron PR [protocol-client](https://github.com/asticode/go-astilectron/pull/368) and issue #57.
I need a programmatically interruption [ here](https://github.com/asticode/astilectron/blob/a8c3f044b1feecab7f18840f6769ed7ec576da1d/index.js#L530-L534) to prevent site navigation on a page that generates a token. Would it be possible to have the a callback function?
Dear bro, I using astilectron with vue. when "run serve" or "run build", the first time inform not define, but I run the command twice, it successed, nothing changed. the...
We are doing "hot reload" of our go-astilectron-based app, where we basically keep the Electron process running while we restart the Go backend, and then re-connect it to the same...
#36 Use [ws](https://www.npmjs.com/package/ws) to create websocket client with stream API, and language binding side should implement server side for supporting websocket over TLS, wss://localhost:port
Pull Request is partenered with [asticode/go-astilectron#191](https://github.com/asticode/go-astilectron/pull/191) This will fix issue: [asticode/go-astilectron#190](https://github.com/asticode/go-astilectron/issues/190)
Thanks for astilectron! I needed this change in order to support the AWS Cognito callback url scheme requirement (https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-app-idp-settings.html) to allow users to login to my app. Please let me...
@asticode