John D
John D

Reputation: 31

How to install electron without using npm command?

Please let me know, how to install electron without using npm. I am using windows 10 , 64 bit OS. I have tried to find option with documentation but not getting detailed step by step guide for this.

Upvotes: 3

Views: 2528

Answers (1)

Torf
Torf

Reputation: 1244

What do you mean by "installing electron"? You can install an electron application. If it's packed you do not need npm or node.

If you want to write an electron application you will need the packages and therefore npm. Only way of doing it without would be installing the dependencies manually which would be extremely difficult and time consuming. Furthermore without npm you cannot test or pack your app. So that would be quite useless.

Why do you not want to use npm?

Upvotes: 1

Related Questions