Recently, I had a simple desktop application project. As the project may become a web app, later on, I wanted to use javascript instead of using another programming language.
To form a simple desktop app using electronjs, I used the following commands.
Step 1: Install the Nodejs.
Step 2: Create a template app
npx create-electron-app speed_reading
Step 3: Release the executable form of the app.
npm run make
I had also a simple bug when I tried to run executables.
I think the creation of an executable application with just 3 commands is great. It is a timesaver for simple projects.