I am trying to build a test app using Electron in my Windows 7 x86. I have Node.js, npm, electron and electron-packager installed. The project's directory structure looks like this:
app
package.json
main.js
index.htlm
I have the following in my package.json file:
{
"name" : "TestApp",
"main" : "main.js",
"version" : "0.01",
"scripts" : {
"start" : "electron .",
"package" : "electron-packager / TestApp --platform=win32 --arch=ia32 --verson=0.30.2 --overwrite "
}
}
And here is the image of what's happening,
after reading the script, it freezes (or I don't know what happens) and nothing happens. I waited for 15-20 minutes but there is no progress after reaching this step. Can someone please help!