I'm trying to package electron-quick-start project in window 10.
it can run will in electron( electron . )
but when i try to package the project use command line.
there is no any reaction in terminal.
The following is my step
1. git clone https://github.com/electron/electron-quick-start
2. cd electron-quick-start
3. npm install electron -g
4. npm install electron --save-dev
5. npm install electron-prebuilt -g
6. npm install electron-prebuilt --save-dev
7. electron-packager . hello --ignore=node_modules/electron-* --platform=win32 --arch=x64 --version=1.0.2
My environment is window 10 with company proxy
Is any step I go wrong?
@babyChou What version of electron-prebuilt and electron-packager are you using?
@babyChou A few things, in addition to the questions asked above:
electron and electron-prebuilt are the same thing, and electron-prebuilt is deprecated (see the Electron blog for details).electron both globally _and_ locally.--version if you install the electron module.electron, electron-prebuilt, and electron-packager module directories.ignore uses regular expression syntax, not glob syntax.SET DEBUG=electron-packager. There should be more output to determine why it's not working for you.@bampakoa The version of electron-prebuilt is 1.3.3 and electron-packager 7.7.0
@malept
I remove electron-prebuilt and run: SET DEBUG=electron-packager.
Then I run: electron-packager . hello --platform=win32 --arch=x64 .
The following pictures are log.

After this command I add --version : electron-packager . hello --platform=win32 --arch=x64 --version=1.3.3

and just hang here
Oops, I should have been more specific. I should have said:
You don't need to specify
--versionif you install theelectronmodule locally.
If you install it locally (with --save-dev), it will read the Electron version from package.json.
[...] and just hang here
That is an interesting problem. Can you run SET DEBUG=electron-download,electron-packager,extract-zip and rerun the electron-packager command?
@babyChou I had the same problem and I experimented by installing all versions of electron-packager after 7.4.0. After that, I gave one more try with 7.7.0 and it worked. I never figured out why it worked like that. I hope this helps.
@malept
I followed your instructions
install electron locally and run SET DEBUG=electron-download,electron-packager,extract-zip
It still not working

Maybe I set something wrong in this computer that I don't know.
I would try another computer
@bampakoa
Thank you for your reply
Yeah, at this point I'm not sure what the problem is. For some reason your installation of electron-packager is not making it to the "downloading Electron" stage. In the next release there will be some more debug statements that might help figure out what's wrong. If you would like to try it before we release the next version (I'm not quite sure when that will be), you should be able to run:
npm install -g electron-userland/electron-packager
and then rerun the SET and electron-packager commands from earlier.
@malept
Hi I try another computer and it work!!!
that I use node version with v6.4.0
thanks for your help~~~
I had this issue just now, resolved by updating Node to the latest version. I believe I was on 6.3.x and the package step was hanging.
Just had this issue also, tried reinstalling node, different node versions, etc.
Found it was getting stuck on fs.remove(tempBase, cb) task.
Deleting ...\AppData\Local\Tempelectron-packager fixed it.
Edit: Sorry - that actually got me far enough to see it getting stuck on 'npm prune --production' command, which led me to https://github.com/npm/npm/issues/17781.
So, for me, it was an issue with npm v5.3.0, downgrading to 5.2.0 seems to have fixed things for me.