orbitdb-archive / orbit

A distributed, serverless, peer-to-peer chat application on IPFS
MIT License
1.64k stars 116 forks source link

Move Orbit to the main process in the Electron app #120

Closed haadcode closed 7 years ago

haadcode commented 7 years ago

Orbit is now in the renderer process in the Electron app. Sending a message involves signing which is heavy and yanks the UI sometimes, so it'd be better to do that in the main process.

haadcode commented 7 years ago

I thought about this and looked into the code and it actually doesn't make sense. Signing a message is not done that often (unless you spam on purpose) in the UI, so it's fine to keep it there.