Ralf Kistner

Results 157 comments of Ralf Kistner

I believe cross-compiling from Linux for MacOS is not supported. Cross-compiling from an Intel Mac for arm64 Mac could work, but I haven't tried that yet.

Native node modules are in general not well suited for webpack. You should be able to exclude it from bundling by using [externals](https://webpack.js.org/configuration/externals/), for example: ```js module.exports = { //...

You don't need to rebuild anything, but you do need to download the correct pre-built binaries. You can that by running a command like this in `node_modules/@journeyapps/sqlcipher`: npm run install...

Is it really _silently_ losing the capabilities? I'd expect an error the first time a relevant PRAGMA statment is used. For the most part it doesn't appear like we can...

@1111mp The error code doesn't say much unfortunately. There may be more details in the log files. Also keep in mind that even though the compile succeeds, there will likely...

Unfortunately those logs still do not contain enough info. If it is an issue with the native module, there should be an error with something like "Cannot find module", which...

That sample project works for me with node 14.0.0 (on Linux, don't have a Windows machine available currently). I ran `yarn start`, but my console output is completely different from...

Electron doesn't run on iOS as far as I know. Are you perhaps using a different project for that?

I'm also interested in this. Breaking changes in DOM/JS APIs are fairly rare, so that's not my biggest concern. However, in my experience the DevTools protocol has major breaking changes...

Same problem here with the default settings: ``` timeout: 5 down_interval: 30 ``` I gather that the following is happening: 1. The node goes down. 2. The connection to the...