Hi,
I am trying to build pretty simple application which uses SQLite (recompilation under windows required).
The problem I face is related to the way aplication is started. While executing “npm start” I get:
On the other hand running with “electron .” is not an issue.
It generates a problem because when i try to apply testing (mocha) i cannot start the application.
package.json:
"main": "main.js",
"scripts": {
"start": "electron ."
},
Could you please help me understand what I am doing incorrectly?