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...
Electron js Tutorials
Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It allows for the development of desktop GUI applications using front and back end components originally developed for web applications: Node.js runtime for the backend and Chromium for the frontend. Electron is the main GUI framework behind several notable open-source projects including GitHub's Atom and Microsoft's Visual Studio Code source code editors and the Light Table IDE.