Ayron Wohletz
I published a branch in my Electron template repository that uses React. See https://github.com/awohletz/electron-prisma-trpc-exam...
A common software project best practice is to break features down into small, deployable pieces. The pieces provide value to the c...
One aspect of modularity is the ability to add modules without disturbing existing modules. I call this property "additive modular...
When I built my Electron app, AriNote, I created an architecture that uses React, tRPC, and Prisma with SQLite. This is a highly p...
Essential data is the information inherent to the problem domain. For example, in a note-taking app, the text of the note is essen...
The process for getting an Electron app signed and notarized on Mac....
So you want to distribute your Electron app to Windows users, but when people run it they get a nasty warning “Microsoft Defender...
We developers often praise separation of concerns. Neatly separated systems are easier to work with, because you can change one pa...