mkdir app-name && cd app-name
npm init
package name: (app-name) app-name <-- name of your app
version: (1.0.0) <-- Version of your app
description: for testing <-- App Description
entry point: (index.js) main.js <-- This is the .js file everything will run from. (index.js or main.js)
test command: start <-- command used to run the app in bash/shell for testing
git repository: <-- git repo if you are going to use one
keywords: <-- keywords for the app
author: Author Name <-- Name of the author of the app (your name)
license: (ISC) MIT <-- use MIT for license
npm install --save-dev electron