Posts

How to create an Electron app?

First and foremost, create a local project folder on your machine. Then, write this command in the terminal from the root project level. npm init Enter the below information to generate packge.json {   "name": "electron-app",   "version": "1.0.0",   "description": "Tutorial for getting started on building an elctron app :)",   "main": "main.js",   "author": "your name"  "license": "ISC"  } Check out the package.json {   "name": "electron-app",   "version": "1.0.0",   "description": "Tutorial for getting started on building an elctron app :)",   "main": "main.js",  "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },   "author": "your Name",   "license": "ISC"  } If the main is not pre
Recent posts