Articles in this series
Browsers won. Every day you use like 100 apps, and 99 of them are browser apps. Or phone apps, which are basically browser apps with extra steps. Most...
An Electron app is sort of two apps in one. There's the frontend app controlling the frontend, and the backend app controlling the backend, and they...
Let's do something that frontend code can't do on its own - run shell commands. Run a single command Electron on the backend is basically node...
Let's do something a little more advanced with Electron - generate some HTML dynamically, and load it into the browser window. There's no direct...
The approach used in previous episode, of constructing an enormous data URL, is not very scalable. Electron offers surprisingly many alternatives, and...
In previous episode we created a small app that displays how much free disk space you have, in a very boring way. Now it's time to spice it up! We...